diff --git a/.travis.yml b/.travis.yml index bcc26ce16ec..28f72140ab4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,32 +1,21 @@ language: python +python: + - "3.6" + cache: pip: true - directories: - - node_modules -matrix: - include: - - python: "3.6" - -before_install: - - echo "Installing Hugo 0.31.1" -# - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - -# - sudo apt install nodejs - - wget https://github.com/gohugoio/hugo/releases/download/v0.31/hugo_0.31_Linux-64bit.deb - - sudo dpkg -i hugo*.deb - - hugo version -# - sudo npm install --global gulp-cli -# - npm install -install: - - echo "Install pytest and pip" - - pip install -r ci/requirements.txt +env: + - TEST_SUITE=vale + - TEST_SUITE=pytest -before_script: - - echo "Setting up local development server" - - hugo server & - - sleep 7 +before_install: + - if [ $TEST_SUITE == pytest ]; then + wget https://github.com/gohugoio/hugo/releases/download/v0.36/hugo_0.36_Linux-64bit.deb; + sudo dpkg -i hugo*.deb; + (hugo server &); + fi + - sleep 7 script: - - echo "Checking for style guidelines" - - python -m pytest -n 2 - + - ./ci/scripts/$TEST_SUITE.sh \ No newline at end of file diff --git a/.vale.ini b/.vale.ini new file mode 100644 index 00000000000..bd57de3d914 --- /dev/null +++ b/.vale.ini @@ -0,0 +1,32 @@ +StylesPath = ci/vale/styles + +# The minimum alert level to display (suggestion, warning, or error). +# +# CI builds will only fail on error-level alerts. +MinAlertLevel = warning + +# HTML tags to be ignored by Vale. `code` and `tt` are the default, but Linode +# seems to use `strong` in a similar ways -- e.g., `**docker build -t ubuntu**`, +# which could trigger two style issues ("docker" and "ubuntu") but is actually +# a command. +IgnoredScopes = code, strong, tt + +# Specifies what Vale considers to be a boundary between words. +WordTemplate = \s(?:%s)\s + +[*.md] +# A Linode-specific style (see ci/vale/styles/Linode) that implements spelling +# and capitalization rules. +# +# To add another style, just add it to the `StylesPath` and update the setting +# below (e.g., `BasedOnStyles = Linode, AnotherStyle`). +BasedOnStyles = Linode + +# Exclude `{{< file >}}`, `{{< file-excerpt >}}`, `{{< output >}}`, +# and `{{< highlight ... >}}`. +# +# For a description (and unit tests) for these patterns see: +# https://regex101.com/r/m9klBv/3/tests +IgnorePatterns = (?s) *({{< output >}}.*?{{< ?/ ?output >}}), \ +(?s) *({{< ?file(?:-excerpt)? [^>]* ?>}}.*?{{< ?/ ?file(?:-excerpt)? ?>}}), \ +(?s) *({{< highlight \w+ >}}.*?{{< ?/ ?highlight >}}) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000000..bcb2eb73d4e --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,73 @@ +# Linode Code of Conduct + +## Our Pledge + +In order to encourage an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of: + +* age +* body size +* disability +* ethnicity +* gender identity and expression +* level of experience +* nationality +* personal appearance +* race +* religion +* sexual identity and orientation + +## Our Standards + +You can contribute to creating a positive environment in many ways. For example you can: + +* use welcoming and inclusive language +* be respectful of differing viewpoints and experiences +* accept constructive criticism gracefully +* focus on what is best for the community +* show empathy towards other community members +* be helpful and understanding + +You should not: + +* use sexualized language or imagery +* make unwelcome sexual advances +* troll, and make insulting or derogatory comments +* make personal or political attacks +* harass others, in public or private +* publish others' private information, such as a physical or electronic address, without explicit permission +* engage in any other conduct which could reasonably be considered bullying or inappropriate in a professional setting + +## Our Responsibilities + +As project maintainers, we are responsible for clarifying the standards of acceptable behavior and we are expected to take appropriate and fair corrective action in response to any instances of unacceptable behaviour. + +We have the right and responsibility to remove, edit, or reject: + +* comments +* commits +* code +* issues +* other contributions that are not aligned to this code of conduct + +We also reserve the right to temporarily or permanently ban any contributor for other behaviors we deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This code of conduct applies whenever you are representing the project or community. For example you may be: + +* working in a project space online or in the public +* using an official project email address +* posting via an official social media account +* participating in an online or offline event + +Project maintainers may further define and clarify representation of a project. + +## Enforcement + +You should report any instances of abusive, harassing, or otherwise unacceptable behaviour to the project team at docs@linode.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain the anonymity of the reporter of an incident. We may post further details of specific enforcement policies separately. + +Project contributors who do not follow or enforce this code of conduct in good faith may face temporary or permanent consequences. These will be determined by members of the project's leadership. + +## Attribution + +This code of conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.4, and the [gov.uk open standards CODE_OF_CONDUCT.md](https://github.com/alphagov/open-standards/blob/master/CODE_OF_CONDUCT.md). diff --git a/README.md b/README.md index 10e8966d2e8..15004d660d2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Linode logo](docs/assets/linode_readme_logo.png) -# Guides and Tutorials [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-blue.svg)](https://creativecommons.org/licenses/by/4.0/) +# Guides and Tutorials [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-blue.svg)](https://creativecommons.org/licenses/by/4.0/) [![first-timers-only](http://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/) @@ -20,7 +20,7 @@ ## How can I write a guide? -We are constantly looking to impove the quality of our library. See our [rotating list of suggested topics](https://www.linode.com/docs/contribute/). +We are constantly looking to improve the quality of our library. See our [rotating list of suggested topics](https://www.linode.com/docs/contribute/). More detailed instructions on submitting a pull request can be found [here](CONTRIBUTING.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/scripts/pytest.sh b/ci/scripts/pytest.sh new file mode 100755 index 00000000000..cb366f1e842 --- /dev/null +++ b/ci/scripts/pytest.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +pip install -r ci/requirements.txt +python -m pytest -n 2 diff --git a/ci/scripts/vale.sh b/ci/scripts/vale.sh new file mode 100755 index 00000000000..6fd09b354f0 --- /dev/null +++ b/ci/scripts/vale.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +go get github.com/ValeLint/vale +vale --glob='*.{md}' docs 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/ci/test_filename.py b/ci/test_filename.py index 7bd56b593dc..90aa5dbc6e1 100644 --- a/ci/test_filename.py +++ b/ci/test_filename.py @@ -4,7 +4,7 @@ # Cartesian product of file names and extensions # e.g. README.txt, README.md, CHANGELOG.txt, CHANGELOG.md ... file_extensions = ['txt', 'md'] -names = ['README', 'CHANGELOG', 'CONTRIBUTING', 'LICENSE'] +names = ['README', 'CHANGELOG', 'CONTRIBUTING', 'LICENSE', 'CODE_OF_CONDUCT'] exempt_files = [('.'.join(x)) for x in itertools.product(names, file_extensions)] def test_filename(md_filepath): diff --git a/ci/vale/dictionary.txt b/ci/vale/dictionary.txt new file mode 100644 index 00000000000..903674fefce --- /dev/null +++ b/ci/vale/dictionary.txt @@ -0,0 +1,1468 @@ +abc +absecon +abspath +adc +addon +addons +addr +addressfield +adduser +adminpack +adodb +aes +ahci0 +ahvz +ajp +aker +alives +allmasquerade +allnodes +allrouters +amavis +amavisd +amd64 +amongst +analytics +anonymize +anonymizing +ansible +antispam +ap +apache2 +appimage +appletalk +appserver +apxs +aren +argv +arping +aske +async +authdaemonrc +authlib +authmodulelist +authmysql +authmysqlrc +authn +authomator +authy +autocomplete +autocompletion +autoconfiguration +autoconfigure +autohosting +autojoin +autojump +autologin +autologout +automagically +automattic +autorelabel +autorun +autoscaling +autossh +autostart +autovacuum +auxprop +avz +awk +awstats +azc +backend +backends +backported +backporting +backports +backreference +backreferences +backtick +backticks +bak +bampton +bandwdith +bandwith +barcode +baremetal +base64 +basearch +bashdoor +bashrc +bc +berkshelf +bgrewriteaof +binlog +bitbucket +bitrate +blocklists +boonex +bootable +bootloader +bootup +bootups +bounceback +brackley +bram +broswer +bs4 +bugtracker +bukkit +bundler +bungeecord +burndown +byrequests +bzip2 +bzip2 +bzrtools +c2s +cabd +cacert +caddy +caddyfile +caker +cakey +calc +captcha +carootcert +celeryd +centos +centos7 +ceph +cer +certbot +certcheck +cfg +cgi +changelog +changelogs +changeme +changeset +chatrooms +cheatsheet +checkboxes +checkmark +checksummed +checksums +chefspec +chery +chgrp +chmod +chown +christoph +chroot +chrooted +citad +cjones +clearspace +cli +clickboard +clickjacking +client1 +client2 +clojure +clonefrom +clozure +cls +cluebringer +cluster1 +clustermgr +clustermgrguest +cmd +cmdmod +cmusieve +cnf +codebase +codeblock +codec +com2sec +comodo +conda +config +configs +configtest +confluece +convolutional +coose +copyfrom +copyto +coreutils +corporateclean +couldn +cpanminus +cpu +cqlsh +cqlshrc +craftbukkit +craigslist +crashingdaily +createdt +createfromstackscript +cron +crond +cronie +cronjob +cronjobs +crontab +crt +crypto +csr +css +csum +csv +ctools +ctrl +customizability +customizable +cyberduck +cyg +cygwin +cz +d39a +d693 +daemonization +daemonize +daemonized +daemonizes +daemonizing +dahdi +datadir +dataset +datasets +datasource +datastax +datastore +datetime +dav +davfs +davfs2 +db8 +dbconfig +dbd +dbdir +dbfiles +dbname +dbserver +dcs +deathmatch +debconf +declaratively +deduplication +defragment +deprovisioning +descolada +descr +dest +dev +devel +devops +devtmpfs +df +dhclient +dialogs +diavel +didn +diffie +digium +diplays +dircaps +directadmin +dired +displayfeatures +disqus +distro +distros +dists +django +dkim +dmg +dmitriy +dmz +dnf +dns +dnsleaktest +dnsmasq +dockercompose +dockerfile +dockerfiles +dockerize +dockerized +dokku +domain1 +domain2 +domain3 +domainkey +domainname +dotdeb +dotfiles +doveadm +dpkg +dport +dropdown +drupal +drush +drwxr +dshield +dsn +ducati +dust2 +dust2 +dvcs +e2fsck +ea04 +ead +ecommerce +ecute +edu +efi +ejabberd +el6 +el7 +elasticsearch +elgg +elpaso +email2email +ender +enix +entrypoint +env +envs +epel +erb +erlang +esc +essage +estart +etcd +etcd0 +eth0 +everytime +evhost +example1 +example2 +examplegroup +examplepassword +examplerole +examplesitename +exampleuser +exe +executables +exim +expirations +ext2 +ext3 +ext4 +ext4 +facter +facto +fail2ban +fail2ban +failover +failregex +failregexs +failsafes +falko +fastcgi +fastmail +fastopen +fauxhai +fb4c +fcgi +fcgiwrap +fcrontab +fd86 +fdisk +fdriver +fe70 +fedf +fetchmail +fetchmailrc +ff02 +fi +fiiiile +file1 +filebeat +filecap +filecaps +filemode +filepath +filepaths +fileserver +filesystem +filesystems +filezilla +filimonov +finnix +firewalld +firstsite +flatpress +flyspray +fpm +fragging +framesets +freedns +friendster +frontend +fs +fsck +fstab +galera +gamemode +gameplay +gcc +gcm +gem1 +gemfile +genmask +gentoolkit +geoip +geolocating +geolocation +getmail +getpwent +gfx +gfxmode +girocco +github +gitignore +gitlab +gitolite +gitosis +gitweb +glibc +glish +globals +globalsieverc +globalsign +globbing +gluster +gmail +gmod +gnulinux +gnutls +gogs +golang +goto +gpc +gpg +grafana +graylog +graylog2 +graylog2 +greenbone +greylist +greylisting +griefing +groot +grsecurity +gsa +gsad +guacd +guarisma +gui +gunicorn +gz +gzio +gzip +gzipped +gzipping +h2 +h3 +h4x0r123 +hackage +hadoop +halls3 +haproxy +hardcoded +hardcopy +hardlimit +hashmark +hasn +hba +hd0 +hdfs +heartbleed +hiera +hilights +hl2 +hl2 +hmac +hoc +homebrew +host1 +host2 +hostames +hostname +hostnames +hotspots +howto +howtoforge +howtogeek +href +htaccess +htcache +htdocs +html +htmldir +htop +htpasswd +http +httpchk +httpd +https +hulu +hvc0 +hybla +hyperefficient +hypervisor +hypervisors +i386 +icanhazip +iceweasel +icinga +icingacli +icmp +icmpv6 +ident +identrust +idlist +ie +iface +ifconfig +ifdown +ifnames +iframe +iframes +ifup +ikiwiki +im +imap +imapd +imaps +img +immutant +impor +inet +inet6 +ini +initializer +initramfs +initrd +inittab +inode +inotify +insmod +interdomain +interruptible +introducer +introducers +iodef +iotop +ip +ip4 +ip6 +ip6tables +ipchains +ipset +ipsets +iptabes +iptables +ipv4 +ipv6 +ipwl +irc +ircname +irssi +isn +iso +isoformat +isp +issuewild +iterable +itk +java6 +java6 +javac +javascript +jdbc +jdk +jenkinsfile +jetpack +jk +jks +jobd +joomla +journaled +journaling +jpg +jre +js +json +jupyter +kakfa +kbits +keepalive +keepalived +keras +kerberos +kerberos5 +keychain +keyfiles +keygen +keymap +keypair +keypairs +keysize +keystore +kibana +kickban +kickbans +kickstarter +killall +klei +kloth +kloxo +knowledgebase +konversation +kube +kubeadm +kubectl +kubelet +kubelets +kubernetes +labelled +lambdabunker +laravel +lastest +latestet +lbmethod +lda +ldap +leiningen +letsencrypt +lf +li181 +li263 +lib32 +libaprutil1 +libc +libc6 +libcurl +libev +libgcc1 +libphp +libpri +libracy +libsasl2 +libuv +lifecycle +lighthttpd +lighttpd +lighty +ligttpd +linode +linodes +lish +listdir +listserv +listservs +lksemel +lo0 +loadavg +loadout +localdomain +localhost +lockdown +logallrefupdates +logdir +logfile +logfiles +loglevel +logrotate +logstash +logwatch +longview +lookups +loopback +lsd +lst +lsyncd +lua +lucene +luminus +lxml +lzma +lzopio +magento +maildir +maildirs +maildrop +maillbox +mailname +mailq +mailserver +mailuser +mailutils +maitis +managesieve +mandriva +manyof +mapreduce +mariadb +maskname +mathjax +maxconn +maxdepth +mbit +mbits +mbox +mbstrings +mcrypt +mcy +md5 +md5sum +mdev +mediawiki +memcached +menuentry +mesos +metacity +metapackage +metricbeat +microblogs +microservice +microservices +microsystems +microweb +minecraft +miniconda +miniconda3 +minification +minimalistic +misconfiguration +misconfigurations +misconfigured +mkdir +mnesia +moby +modsecurity +mongodb +monit +moolenaar +motd +mountpoint +mouseover +mpm +msg +msgid +msgpack +msmtp +mstmp +mtr +mtu +multiarch +multibyte +multicast +multicraft +multilib +multiport +multiuser +munin +musl +mutliverse +myapp +myblog +mydestination +mydomain +myhostname +mynewdomain +mypassword +myproject +myserver +mysql +mysqlclient10 +mysqld +mysqldefault +mysqldump +mytestdb +myuser +nagios +nagiosadmin +nameserver +nameservers +namespace +nano +natively +ncurses +neo +neomake +netblocks +netboot +netconfig +netdev +netfilter +netfs +netifrc +netloc +netmask +networkd +newgrp +newtag +nextcloud +nexthop +ng +nginx +ngrok +ngx +nickcolor +nixcraft +nixpkgs +nmap +noarch +node1 +node2 +nodebalancer +nodebalancers +nodejs +nodemanager +nodename +nodeport +nodesdirect +nodesource +nofailover +noloadbalance +noninteractive +nonprivileged +nonrecursive +nosync +novell +npm +npmjs +nrcpt +ns1 +ns2 +nsd4 +nsd4 +ntopng +ntpd +ntpong +num +numpy +nvim +odoo +oftc +ohai +ok +oldstable +ommand +oneof +onone +ons +ontinue +opencart +opendkim +openfire +openjdk +openspf +openssl +openvas +openvasmd +openvassd +openvpn +openvz +openzipkin +ossec +ostemplate +osx +otomen +ournaling +overcommit +overwatch +ovpn +owadb +owncloud +pacman +pagent +pagespeed +pakages +pandoc +param +paramiko +params +paravirt +paravirtualization +paravirtualized +parentheticals +partitionless +partyline +passdb +passlib +passphraseless +passwd +passwdcolumn +passwdfile +passwordless +patroni +pem +pepi +percona +perfom +permalink +permalinks +pflogsumm +pgpass +phar +pharo +php +php5 +php7 +phpmyadmin +phusion +pid +pidfile +piwik +pki +plaintext +plesk +plex +plone +ploop +pluggable +png +pocketmine +polcy +pop3 +pop3d +pop3s +portainer +portmapper +postgres +postgresql +postgresql0 +postmap +postrouting +ppa +pparadis +ppc64el +pre +pre4 +precompiled +preconfigured +prefork +preinstalled +premade +prepend +prepended +prepending +preprocessing +prerouting +prestashop +pritunl +procmail +procs +programmatically +prosodyctl +proto +proxied +proxying +pscp +psql +psudo +psycop2 +pty +publickey +puppetd +puppetmaster +puttygen +pv +pvgrub +pwcheck +px +py +pyamqp +pyinotify +pypiserver +python3 +pythonic +qmail +qmgr +qualys +quickconnect +quicklisp +quickstart +ramdisk +rbenv +rc +rce +rcon +rdbadmin +rdiff +readcaps +readme +readonly +readwrite +realtime +reconnections +recursing +red5 +reddit +redhat +redir +redis +redmin +redmine +reenable +reenabling +refspec +reimported +reindexing +reinstalls +releasever +remi +remmina +remotehost +replset +repo +repos +repositoryformatversion +resharding +resilvering +resolv +resolvconf +resque +restapi +reutilize +richlanguage +rimap +rkt +rmem +ro +roadmap +rocommunity +roundcube +routable +rpaf +rpc +rpmforge +rsa +rss +rstudio +rsync +rsyslog +rtf +rtt +rubocop +rubygems +rubygems1 +ruleset +rulesets +rundir +runlevels +runtime +runtimes +rw +rwx +rwxr +s1 +s2s +s3cr37 +s3cret +sakila +sasl +sasl2 +saslauth +saslauthd +sasldb +sbin +sbopkg +scgi +schemas +scm +scp +scrapy +scriptfilename +scrum2b +sda +sda1 +sdb +sdc +seafile +seahub +searchbots +searchterm +secondsite +secretpassword +sed +selinux +sendable +sendmail +seo +serv +server1 +servername +serverpassword +servlet +servlets +setattr +setenvif +setguid +setuid +setuptools +sfadmin +sfproject +sfroot +sftp +sha256 +shadowsocks +sharded +sharding +shellshock +shinagawa1 +shortcode +shortcodes +shortguide +shortguides +shortname +shoutcast +simfs +sintra +sitename +slackpkg +smartcard +smartcards +smtp +smtpd +smux +snakeoil +snapsnot +snmp +snmpd +softlimit +solaris +solr +somaxconn +someuser +spamassassin +spamd +spamhaus +spammy +sparklines +spectre +speedtest +spf1 +spork +sql +sqlplus +squirrelmail +src +srv +sshd +sshfs +ssi +ssl +stackscript +stackscripts +stalkyard +starttls +stateful +statusbar +stderr +steamlab +stopwait +su +subcommand +subcommands +subfile +subfiles +subfolder +subkey +subkeys +submenu +submodules +subnet +subnets +subnetwork +subreddits +subtab +subtransit +sudo +sudoers +suhosin +suid +sukharev +supervisord +surbma +svn +symantec +symfony +symlink +symlinking +symlinks +symvers +syncookies +syntastic +syntaxes +sys +sysconfig +sysctl +syslog +systemctl +systemd +systemname +targ +tasksel +taskserver +taskwarrior +tbz +tcp +tcpwrappers +teamspeak +templating +tensorflow +terraria +testdb +testfile +testkeys +testparam +testuser +tf +tgz +thawte +theano +theming +thingsboard +tika +timeframe +timespan +timewait +timey +timme +tinc +tincd +tinydb +titlebar +tld +tls +tlz +tmp +tmux +todo +togami +tokenized +tokyo2 +tomacat +tomcat6 +traceroute +trackbar +trafic +transcoder +truststore +tt +ttl +ttpd +ttrss +tun0 +tune2fs +tunnelblick +turtl +tw +txt +txz +ucd +ufw +ui +uidl +un +unban +Unbans +unbilled +unbundle +uncheck +unchecking +uncomment +uncommented +uncommenting +uncompress +unecrypted +unencrypted +unformatted +unforseen +unicast +unintuitive +uniq +unmerged +unmount +unmounting +unncessary +unoptimized +unpatched +unregister +unrendered +unsets +unsetting +untar +untracked +untruncated +untrusted +unversioned +uptime +uri +url +urllib +urllib3 +urlopen +urlparse +urls +useradd +usercolumn +userdb +usergroup +userland +usersor +usr +ust +utils +uuid +uwls +uwsgi +v1 +v2 +v4 +v6 +vagrantfile +validator +varnishlog +vcs +vdev +vdevs +ve +ver +verisign +vhost +vhosts +vimrc +virb +virtio +virtualenv +virtualenvwrapper +virtualhost +virtualizations +virtualized +vlogger +vmail +vmem +vmlinuz +vmstat +vnc +vset +vswap +vz +vznetaddbr +walkthrough +wasn +wav +wazuh +webadmin +webalizer +webapp +webapps +webcit +webdata1 +webmail +webmin +webpages +webpy +webroot +webroots +webserver +webservers +webservice +websocket +webtatic +webupd8 +weechat +welcometext +wercker +werkzug +wg +wget +whatsmyip +whitelist +whitelisted +whitelisting +whitespace +whitespaces +whois +wi +widgits +wildfly +wimey +windowlist +wireguard +wkhtmltopdf +wll +wlp6s0 +wmem +wordcount +wordpress +worker1 +worker2 +wp +wpuser +writecaps +ws +wsgi +wsrep +www +wx +xabbix +xap +xen +xenial +xerus +xkcd +xlsx +xlsxwriter +xmail +xming +xml +xmpp +xms +xmx +xr +xrdb +xresources +xsession +xsetroot +xstartup +xtables +xvda +xvdb +xvdc +xxen +xy +xzio +xzip +yaml +yellowdog +yesod +yml +yoast +yourdomain +yourdomainorsubdomainhere +yourname +yoursite +yubico +yubikey +zabbix +zgrep +zile +zimbra +zipkin +zipkinhost +zkcluster1root +zlib +znc +zonefiles +zope +zpool +zsh +zxvf \ No newline at end of file diff --git a/ci/vale/styles/Linode/Spelling.yml b/ci/vale/styles/Linode/Spelling.yml new file mode 100644 index 00000000000..fd3ff4c0e46 --- /dev/null +++ b/ci/vale/styles/Linode/Spelling.yml @@ -0,0 +1,4 @@ +extends: spelling +message: "Did you really mean '%s'?" +level: error +ignore: ci/vale/dictionary.txt diff --git a/ci/vale/styles/Linode/Terms.yml b/ci/vale/styles/Linode/Terms.yml new file mode 100644 index 00000000000..e18d5765dcb --- /dev/null +++ b/ci/vale/styles/Linode/Terms.yml @@ -0,0 +1,30 @@ +extends: substitution +message: Use '%s' instead of '%s'. +level: error +ignorecase: true +swap: + '(?:LetsEncrypt|Let''s Encrypt)': Let's Encrypt + '(?:ReHat|RedHat)': RedHat + 'Mac ?OS ?X': Mac OS X + 'mongoDB': MongoDB + 'node[.]?js': Node.js + 'Post?gr?e(?:SQL)': PostgreSQL + 'java[ -]?scripts?': JavaScript + centOS: CentOS + debian: Debian + fedora: Fedora + gentoo: Gentoo + homebrew: Homebrew + linode cli: Linode CLI + linode manager: Linode Manager + linode: Linode + longview: Longview + macOS: macOS + miniconda: Miniconda + nodebalancer: NodeBalancer + nodebalancers: NodeBalancers + openSUSE: OpenSUSE + slackware: Slackware + ubuntu: Ubuntu + wordpress: WordPress + yaml: YAML 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..f2982dce9a9 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 @@ -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 @@ -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 @@ -746,7 +746,7 @@ The values represented in this guide are current as of publication, but are subj If the process fails, ensure that you do not already have an existing Storm image with the same name in the Linode Manager. If you do, delete it and run the command again, or recreate this image with a different name. {{< note >}} -During this process, a short-lived 2GB linode is created and deleted. This will entail a small cost in the monthly invoice and trigger an event notification email to be sent to the address you have registered with Linode. This is expected behavior. +During this process, a short-lived 2GB Linode is created and deleted. This will entail a small cost in the monthly invoice and trigger an event notification email to be sent to the address you have registered with Linode. This is expected behavior. {{< /note >}} ### Create a Storm Cluster @@ -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/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604.md b/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604.md index c740f0855d2..bc369afdedb 100644 --- a/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604.md +++ b/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604.md @@ -2,13 +2,14 @@ author: name: Sam Foo email: docs@linode.com -description: 'Learn to set up a Redis cluster using three Linode servers and promoting a slave to become a master node with this guide.' +description: 'Learn to set up a Redis cluster using three Linode servers and promoting a slave to become a master node with this guide. Redis is an in-memory key/value store offering high performance for caching and more.' +og_description: 'Learn to set up a Redis cluster using three Linode servers and promoting a slave to become a master node with this guide. Redis is an in-memory key/value store offering high performance for caching and more.' keywords: ["redis cluster installation", "data store", "cache", "sharding"] license: '[CC BY-ND 4.0](http://creativecommons.org/licenses/by-nd/4.0)' aliases: ['applications/big-data/redis-cluster'] -modified: 2017-08-14 +modified: 2018-08-14 modified_by: - name: Linode + name: Sam Foo published: 2017-08-14 title: 'How to Install and Configure a Redis Cluster on Ubuntu 16.04' external_resources: @@ -16,10 +17,12 @@ external_resources: - '[Install and Configure Redis on CentOS 7](/docs/databases/redis/install-and-configure-redis-on-centos-7)' --- -![Redis_banner](/docs/assets/Redis_Cluster.jpg) +![How to Install and Configure a Redis Cluster on Ubuntu 16.04](/docs/assets/Redis_Cluster.jpg) Redis clusters have grown to be a popular tool for caches, queues, and more because of its potential for scalability and speed. This guide aims to create a cluster using three Linodes to demonstrate sharding. Then, you will promote a slave to a master - insurance, in the event of a failure. +Redis as an in-memory store allows for extremely fast operations such as counting, caching, queuing, and more. A cluster setup greatly increases the reliability of Redis by reducing the point of failures. + Prior to starting, we recommend you familiarize yourself with the following: * [Firewall settings using iptables or ufw](/docs/security/firewalls/configure-firewall-with-ufw) diff --git a/docs/applications/big-data/how-to-move-machine-learning-model-to-production.md b/docs/applications/big-data/how-to-move-machine-learning-model-to-production.md index ee852696772..a8597f006f8 100644 --- a/docs/applications/big-data/how-to-move-machine-learning-model-to-production.md +++ b/docs/applications/big-data/how-to-move-machine-learning-model-to-production.md @@ -4,7 +4,7 @@ author: email: docs@linode.com description: 'This guide shows how to use an existing deep learning model as part of a production application. A pre-trained model is included as an API endpoint for a Flask app.' keywords: ["deep learning", "big data", "python", "keras", "flask", "machine learning", "neural networks"] -og_description: 'Use an pre-trained deep learning model as part of a production application.' +og_description: 'Use a pre-trained deep learning model as part of a production application.' license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-10-09 modified: 2017-10-10 @@ -43,7 +43,7 @@ You will be using Python both to create a model and to deploy the model to a Fla 1. Download and install Miniconda, a lightweight version of Anaconda. Follow the instructions in the terminal and allow Anaconda to add a PATH location to `.bashrc`: wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh - bash Anaconda3-5.0.0.1-Linux-x86_64.sh + bash Miniconda3-latest-Linux-x86_64.sh source .bashrc 2. Create and activate a new Python virtual environment: @@ -218,7 +218,7 @@ Apache modules are typically installed with the system installation of Apache. H The output should be similar to: LoadModule wsgi_module "/home/linode/miniconda3/envs/deeplearning/lib/python3.6/site-packages/mod_wsgi-4.5.20-py3.6-linux-x86_64.egg/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so" -WSGIPythonHome "/home/linode/miniconda3/envs/deeplearning" + WSGIPythonHome "/home/linode/miniconda3/envs/deeplearning" 4. Create a `wsgi.load` file in the Apache `mods-available` directory. Copy the `LoadModule` directive from above and paste it into the file: 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/cloud-storage/access-google-drive-linode.md b/docs/applications/cloud-storage/access-google-drive-linode.md index a29be555d03..02ae364e67b 100644 --- a/docs/applications/cloud-storage/access-google-drive-linode.md +++ b/docs/applications/cloud-storage/access-google-drive-linode.md @@ -2,7 +2,7 @@ author: name: Scott Sumner email: scottinthebooth@gmail.com -description: 'Access Google Drive from your Linode with Ubuntu 14.04' +description: 'Access Google Drive from your Linode with Ubuntu 14.04 using OCamlfuse to connect directly with the Google Drive API.' keywords: ["google", "drive", "console", "fuse", "apt", "ubuntu"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2015-09-28 diff --git a/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu.md b/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu.md index 42d3d616fb7..d985b25ba65 100644 --- a/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu.md +++ b/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu.md @@ -17,7 +17,7 @@ title: 'How to Install a Turtl Server on Ubuntu' [Turtl](https://turtlapp.com/docs) is an open-source alternative to cloud-based storage services. With a focus on privacy, Turtl offers a place to store and access your passwords, bookmarks and pictures. Hosting your own Turtl server on a secure Linode allows you to monitor your own security. -The Turtl server is written in Common Lisp, and the low-level encryption is derived from the Stanford Javascript Crypto Library. If encryption is important to you, read over the [encryption specifics](https://turtlapp.com/docs/security/encryption-specifics/) section of the official documentation. +The Turtl server is written in Common Lisp, and the low-level encryption is derived from the Stanford JavaScript Crypto Library. If encryption is important to you, read over the [encryption specifics](https://turtlapp.com/docs/security/encryption-specifics/) section of the official documentation. ## Before You Begin @@ -45,22 +45,22 @@ The Turtl server has to be built from source. Download all of the dependencies a Download the Libuv package from the official repository: - wget https://dist.libuv.org/dist/v1.13.0/libuv-v1.13.0.tar.gz - tar -xvf libuv-v1.13.0.tar.gz + wget https://dist.libuv.org/dist/v1.13.0/libuv-v1.13.0.tar.gz + tar -xvf libuv-v1.13.0.tar.gz Build the package from source: cd libuv-v1.13.0 sudo sh autogen.sh - sudo ./configure - sudo make - sudo make install + sudo ./configure + sudo make + sudo make install After the package is built, run `sudo ldconfig` to maintain the shared libracy cache. #### RethinkDB -[RethinkDB](https://rethinkdb.com/faq/) is a flexible JSON datbase. According to the Turtl [documentation](https://turtlapp.com/docs/server/), RethinkDB just needs to be installed; Turtl will take care of the rest. +[RethinkDB](https://rethinkdb.com/faq/) is a flexible JSON database. According to the Turtl [documentation](https://turtlapp.com/docs/server/), RethinkDB just needs to be installed; Turtl will take care of the rest. RehinkDB has community-maintained packages on most distributions. On Ubuntu, you have to add the RethinkDB to your list of repositories: @@ -98,13 +98,13 @@ According to the CCL [documentation](https://ccl.clozure.com/download.html), you Quickly check if CCL has been installed correctly by updating the sources: cd ccl - svn update + svn update Move `ccl` to `/usr/bin` so `ccl` can run from the command line: cd .. sudo cp -r ccl/ /usr/local/src - sudo cp /usr/local/src/ccl/scripts/ccl64 /usr/local/bin + sudo cp /usr/local/src/ccl/scripts/ccl64 /usr/local/bin Now, running `ccl64`, or `ccl` depending on your system, will launch a Lisp environment: @@ -163,8 +163,8 @@ Download ASDF: Load and install `asdf.lisp` in your CCL environment: ccl64 --load quicklisp.lisp - (load (compile-file "asdf.lisp")) - (quit) + (load (compile-file "asdf.lisp")) + (quit) ### Install Turtl @@ -191,7 +191,7 @@ Turtl does not ship with all of its dependencies. Instead, the Turtl community p Edit the `/home/turtl/.ccl-init.lisp` to include: (cwd "/home/turtl/api") - (load "/home/turtl/api/launch") + (load "/home/turtl/api/launch") The first line tells Lisp to use the `cl-cwd` package that you cloned to change the current working directory to `/home/turtl/api`. You can change this to anything, but your naming conventions should be consistent. The second line loads your `launch.lisp`, loading `asdf` so that Turtl can run. diff --git a/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7.md b/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7.md index fb1284d9d67..9eb5ab7a134 100644 --- a/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7.md +++ b/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7.md @@ -106,7 +106,7 @@ gpgcheck=1 yum-config-manager --enable remi-php71 yum install php71-php php-mbstring php-zip php71-php-opcache php71-php-mysql php71-php-pecl-imagick php71-php-intl php71-php-mcrypt php71-php-pdo php-ZendFramework-Db-Adapter-Pdo-Mysql php71-php-pecl-zip php71-php-mbstring php71-php-gd php71-php-xml -y -5. The default file upload size PHP will allow is 2MB. Increase (or decrease) the allowed filesize to your preferred value. The example below will set a 512MB file upload size and no limit for the post size: +5. The default file upload size PHP will allow is 2MB. Increase (or decrease) the allowed file size to your preferred value. The example below will set a 512MB file upload size and no limit for the post size: sudo cp /etc/php.ini /etc/php.ini.bak sudo sed -i "s/post_max_size = 8M/post_max_size = 0/" /etc/php.ini 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/beginners-guide-chef.md b/docs/applications/configuration-management/beginners-guide-chef.md index c476b1ddfd7..12dfa96d2bf 100644 --- a/docs/applications/configuration-management/beginners-guide-chef.md +++ b/docs/applications/configuration-management/beginners-guide-chef.md @@ -14,7 +14,7 @@ title: A Beginner's Guide to Chef external_resources: - '[Chef](http://www.chef.io)' - '[Setting Up a Chef Server, Workstation, and Node on Ubuntu 14.04](/docs/applications/chef/setting-up-chef-ubuntu-14-04)' - - '[Creating Your First Chef Cookbook](/docs/applications/chef/creating-your-first-chef-cookbook)' + - '[Creating Your First Chef Cookbook](/docs/applications/configuration-management/creating-your-first-chef-cookbook/)' --- @@ -22,13 +22,13 @@ external_resources: ![Chef for beginners](/docs/assets/a_beginners_guide_to_chef_smg.jpg) -Chef works with three core components: The Chef server, workstations, and nodes. The Chef server is the hub of Chef operations, where changes are stored for use. Workstations are static computers or virtual servers where all code is created or changed. There can been as many workstations as needed, whether this be one per person or otherwise. Finally, nodes are the servers that need to be managed by Chef -- these are the machines that changes are being pushed to, generally a fleet of multiple machines that require the benefits of an automation program. +Chef works with three core components: The Chef server, workstations, and nodes. The Chef server is the hub of Chef operations, where changes are stored for use. Workstations are static computers or virtual servers where all code is created or changed. There can be as many workstations as needed, whether this be one per person or otherwise. Finally, nodes are the servers that need to be managed by Chef -- these are the machines that changes are being pushed to, generally a fleet of multiple machines that require the benefits of an automation program. [![Chef Workflow](/docs/assets/chef_graph-small.png)](/docs/assets/chef_graph.png) These three components communicate in a mostly-linear fashion, with any changes being pushed from workstations to the Chef server, and then pulled from the server to the nodes. In turn, information about the node passes to the server to determine which files are different from the current settings and need to be updated. -If you wish to farther explore Chef please see the guides [Setting Up a Chef Server, Workstation, and Node on Ubuntu 14.04](/docs/applications/chef/setting-up-chef-ubuntu-14-04) and [Creating Your First Chef Cookbook](/docs/applications/chef/creating-your-first-chef-cookbook). +If you wish to farther explore Chef please see the guides [Setting Up a Chef Server, Workstation, and Node on Ubuntu 14.04](/docs/applications/chef/setting-up-chef-ubuntu-14-04) and [Creating Your First Chef Cookbook](/docs/applications/configuration-management/creating-your-first-chef-cookbook/). ## The Chef Server 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/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..b3229611af0 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. @@ -233,21 +232,21 @@ With both the server and a workstation configured, it is possible to bootstrap y Bootstrapping a node installs the chef-client and validates the node, allowing it to read from the Chef server and make any needed configuration changes picked up by the chef-client in the future. -1. From your *workstation*, bootstrap the node either by using the node's root user, or a user with elevated privledges: +1. From your *workstation*, bootstrap the node either by using the node's root user, or a user with elevated privileges: - - 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/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/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04.md b/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04.md index 91dd18c449b..d1780372456 100644 --- a/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04.md +++ b/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04.md @@ -108,7 +108,7 @@ To understand how Hiera works, consider this excerpt from the default `hiera.yam {{< /file-excerpt >}} -This Hiera configuration instructs Puppet to accept variable values from `nodes/%{::trusted.certname}.yaml`. If your Linode's hostname is `examplehostname`, define a file called `nodes/examplehostname.yaml`). Any variables found in yaml files higher in the hierarchy are preferred, while any variable names that do not exist in those files will fall-through to files lower in the hierarchy (in this example, `common.yaml`). +This Hiera configuration instructs Puppet to accept variable values from `nodes/%{::trusted.certname}.yaml`. If your Linode's hostname is `examplehostname`, define a file called `nodes/examplehostname.yaml`). Any variables found in YAML files higher in the hierarchy are preferred, while any variable names that do not exist in those files will fall-through to files lower in the hierarchy (in this example, `common.yaml`). The following configuration will define Puppet variables in `common.yaml` to inject variables into the `mysql::server` class. @@ -122,7 +122,7 @@ class { '::mysql::server': } {{< /file >}} -We can also define the root password with the following Hiera configuration file. Create the following yaml file and note how the `root_password` parameter is defined as Hiera yaml: +We can also define the root password with the following Hiera configuration file. Create the following YAML file and note how the `root_password` parameter is defined as Hiera yaml: {{< file "/etc/puppetlabs/code/environments/production/hieradata/common.yaml" >}} mysql::server::root_password: examplepassword @@ -146,14 +146,14 @@ Enter the password and MySQL returns its version: ### Define MySQL Resources -Using Hiera, we can define the rest of the MySQL configuration entirely in yaml. The following steps will create a database and user for use in a Wordpress installation. +Using Hiera, we can define the rest of the MySQL configuration entirely in yaml. The following steps will create a database and user for use in a WordPress installation. 1. Create a pre-hashed MySQL password. Replace the password `wordpresspassword` in this example, and when prompted for a the root MySQL password, use the first root password chosen in the previous section to authenticate. Note the string starting with a `*` that the command returns for Step 2: mysql -u root -p -NBe 'select password("wordpresspassword")' *E62D3F829F44A91CC231C76347712772B3B9DABC -2. With the MySQL password hash ready, we can define Hiera values. The following yaml defines parameters to create a database called `wordpress` and a user named `wpuser` that has permission to connect from `localhost`. The yaml also defines a `GRANT` allowing `wpuser` to operate on the `wordpress` database with `ALL` permissions: +2. With the MySQL password hash ready, we can define Hiera values. The following YAML defines parameters to create a database called `wordpress` and a user named `wpuser` that has permission to connect from `localhost`. The YAML also defines a `GRANT` allowing `wpuser` to operate on the `wordpress` database with `ALL` permissions: {{< file "/etc/puppetlabs/code/environments/production/hieradata/common.yaml" yaml >}} mysql::server::root_password: examplepassword @@ -207,7 +207,7 @@ In the following example, Puppet will configure the MySQL server with one additi This change instructs Hiera to look for Puppet parameters first in `"%{facts.os.family}.yaml"` and then in `common.yaml`. The first, fact-based element of the hierarchy is dynamic, and dependent upon the host that Puppet and Hiera control. In this Ubuntu-based example, Hiera will look for `Debian.yaml`, while on a distribution such as CentOS, the file `RedHat.yaml` will automatically be referenced instead. -2. Create the following yaml file: +2. Create the following YAML file: {{< file "/etc/puppetlabs/code/environments/production/hieradata/Debian.yaml" yaml >}} lookup_options: 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 75b434d11b1..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 @@ -22,8 +22,6 @@ external_resources: ![Ansible](/docs/assets/Learn_How_to_Install_Ansible_and_Run_Playbooks_smg.jpg) -# Getting started with Ansible: An Installation and Configuration Tutorial - Consider the monotony of administering a server fleet; keeping them all updated, pushing changes out to them, copying files, etc. Things can get complicated and time consuming very quickly, but it doesn't have to be that way. *[Ansible](http://www.ansible.com/home)* is a helpful tool that allows you to create groups of machines, describe how those machines should be configured or what actions should be taken on them, and issue all of these commands from a central location. It uses SSH, so nothing needs to be installed on the machines you are targeting. Ansible only runs on your main control machine, which can even be your laptop! It is a simple solution to a complicated problem. @@ -40,25 +38,25 @@ Ansible only needs to be installed on the *control machine*, or the machine from Make sure that you have Python 2.x available on the control machine. Ansible is not compatible with Python 3, nor can you use Windows as the control machine. You can [build Ansible from source](https://github.com/ansible/ansible), or install the latest stable packages using the proper command below. -- Mac OS X: +### MacOS - sudo easy_install pip - sudo pip install ansible + sudo easy_install pip + sudo pip install ansible -- CentOS/Fedora: +### CentOS/Fedora - sudo yum install ansible + sudo yum install ansible - {{< note >}} +{{< note >}} The EPEL-Release repository may need to be added on certain versions of CentOS, RHEL, and Scientific Linux. {{< /note >}} -- Ubuntu: +### Ubuntu - sudo apt-get install software-properties-common - sudo apt-add-repository ppa:ansible/ansible - sudo apt-get update - sudo apt-get install ansible + sudo apt-get install software-properties-common + sudo apt-add-repository ppa:ansible/ansible + sudo apt-get update + sudo apt-get install ansible ## First Steps to Configuring Ansible @@ -100,21 +98,18 @@ You executed an Ansible command against one client, but it would be cumbersome t 1. By default, the inventory file is expected to be `/etc/ansible/hosts`. Create that path and file if it does not already exist. - {{< note >}} -If you are running OS X, you may want to create your own Ansible directory elsewhere and then set the path in an Ansible configuration file: + If you are running OS X, you may want to create your own Ansible directory elsewhere and then set the path in an Ansible configuration file: -mkdir ~/Path/To/ansible -touch ~/Path/To/ansible/hosts -touch ~/.ansible.cfg + mkdir ~/Path/To/ansible + touch ~/Path/To/ansible/hosts + touch ~/.ansible.cfg -Open `~/.ansible.cfg` file and add the following lines: + Open `~/.ansible.cfg` file and add the following lines: -{{< file-excerpt "> ~/.ansible.cfg" ini >}} -[defaults] -inventory = ~/Path/To/ansible/hosts -{{< /note >}} - -{{< /file-excerpt >}} + {{< file-excerpt "~/.ansible.cfg" ini >}} + [defaults] + inventory = ~/Path/To/ansible/hosts + {{< /file-excerpt >}} 2. Add an entry to your hosts file, pointing to a server that you connected to in the previous section. You can include multiple servers in this file, using either domains or IP addresses, and can even group them: @@ -255,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/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..365004c9fa5 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. @@ -154,7 +154,7 @@ SSL (Secure Sockets Layer) is the standard security technology for establishing ![Linode API](/docs/assets/configuration-management/laravel_forge_adding_ssl.png) - Laravel Forge comes with LetsEncrypt which help us generate a free SSL certificate. + Laravel Forge comes with Let's Encrypt which help us generate a free SSL certificate. 4. If you already have an SSL certificate, click on the Install Existing Certificate. Otherwise, select **LetsEncrypt (Beta)**. 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/deploying-microservices-with-docker.md b/docs/applications/containers/deploying-microservices-with-docker.md new file mode 100644 index 00000000000..ab7ae92acdb --- /dev/null +++ b/docs/applications/containers/deploying-microservices-with-docker.md @@ -0,0 +1,395 @@ +--- +author: + name: Bob Strecansky +description: 'This guide describes how to effectively use Docker in production using a sample NGINX/Flask/Gunicorn/Redis/Postgresql Application Stack.' +og_description: 'This guide shows how to deploy a simple microservice using Docker. Best practices for using Docker in production are also demonstrated and explained.' +keywords: ["docker", "nginx", "flask", "gunicorn", "redis", "postgresql", "microservice"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +modified: 2018-01-04 +modified_by: + name: Bob Strecansky +published: 2018-01-04 +title: 'How to Deploy Microservices with Docker' +contributor: + name: Bob Strecansky + link: https://twitter.com/bobstrecansky +external_resources: +- '[Github Repository for Example Microservice](https://github.com/bobstrecansky/flask-microservice)' +- '[Using Containers to Build a Microservices Architecture](https://medium.com/aws-activate-startup-blog/using-containers-to-build-a-microservices-architecture-6e1b8bacb7d1)' +--- + +## What is a Microservice? + +Microservices are an increasingly popular architecture for building large-scale applications. Rather than using a single, monolithic codebase, applications are broken down into a collection of smaller components called microservices. This approach offers several benefits, including the ability to scale individual microservices, keep the codebase easier to understand and test, and enable the use of different programming languages, databases, and other tools for each microservice. + +[Docker](https://www.docker.com) is an excellent tool for managing and deploying microservices. Each microservice can be further broken down into processes running in separate Docker containers, which can be specified with Dockerfiles and Docker Compose configuration files. Combined with a provisioning tool such as Kubernetes, each microservice can then be easily deployed, scaled, and collaborated on by a developer team. Specifying an environment in this way also makes it easy to link microservices together to form a larger application. + +This guide shows how to build and deploy an example microservice using Docker and Docker Compose. + +## Before You Begin + +You will need a Linode with Docker and Docker Compose installed to complete this guide. + +### Install Docker + +{{< content "install_docker_ce.md" >}} + +### Install Docker Compose + +{{< content "install_docker_compose.md" >}} + +## Prepare the Environment + +This section uses Dockerfiles to configure Docker images. For more information about Dockerfile syntax and best practices, see our [How To Use Dockerfiles guide](/docs/applications/containers/how-to-use-dockerfiles) and Docker's [Dockerfile Best Practices guide](https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#sort-multi-line-arguments). + +1. Create a directory for the microservice: + + mkdir flask-microservice + +2. Create the directory structure for the microservice components within the new directory: + + cd flask-microservice + mkdir nginx postgres web + +### NGINX + +1. Within the new `nginx` subdirectory, create a Dockerfile for the NGINX image: + + {{< file "nginx/Dockerfile" yaml >}} +from nginx:alpine +COPY nginx.conf /etc/nginx/nginx.conf +{{}} + +2. Create the `nginx.conf` referenced in the Dockerfile: + + {{< file "/nginx/nginx.conf" nginx >}} +user nginx; +worker_processes 1; +error_log /dev/stdout info; +error_log off; +pid /var/run/nginx.pid; + +events { + worker_connections 1024; + use epoll; + multi_accept on; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /dev/stdout main; + access_log off; + keepalive_timeout 65; + keepalive_requests 100000; + tcp_nopush on; + tcp_nodelay on; + + server { + listen 80; + proxy_pass_header Server; + + location / { + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + + # app comes from /etc/hosts, Docker added it for us! + proxy_pass http://flaskapp:8000/; + } + } +} +{{}} + +### PostgreSQL + +The PostgreSQL image for this microservice will use the official `postgresql` image on Docker Hub, so no Dockerfile is necessary. + +In the `postgres` subdirectory, create an `init.sql` file: + +{{< file "postgres/init.sql">}} +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; +SET row_security = off; +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; +SET search_path = public, pg_catalog; +SET default_tablespace = ''; +SET default_with_oids = false; +CREATE TABLE visitors ( + site_id integer, + site_name text, + visitor_count integer +); + +ALTER TABLE visitors OWNER TO postgres; +COPY visitors (site_id, site_name, visitor_count) FROM stdin; +1 linodeexample.com 0 +\. +{{}} + +{{< caution >}} +In Line 22 of `init.sql`, make sure your text editor does not convert tabs to spaces. The app will not work without tabs between the entries in this line. +{{< /caution >}} + +### Web + +The `web` image will hold an example Flask app. Add the following files to the `web` directory to prepare the app: + +1. Create a `.python-version` file to specify the use of Python 3.6: + + echo "3.6.0" >> web/.python-version + +2. Create a Dockerfile for the `web` image: + + {{< file "web/Dockerfile" yaml >}} +from python:3.6.2-slim +RUN groupadd flaskgroup && useradd -m -g flaskgroup -s /bin/bash flask +RUN echo "flask ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers +RUN mkdir -p /home/flask/app/web +WORKDIR /home/flask/app/web +COPY requirements.txt /home/flask/app/web +RUN pip install --no-cache-dir -r requirements.txt +RUN chown -R flask:flaskgroup /home/flask +USER flask +ENTRYPOINT ["/usr/local/bin/gunicorn", "--bind", ":8000", "linode:app", "--reload", "--workers", "16"] +{{}} + +3. Create `web/linode.py` and add the example app script: + + {{< file "web/linode.py" python >}} +from flask import Flask +import logging +import psycopg2 +import redis +import sys + +app = Flask(__name__) +cache = redis.StrictRedis(host='redis', port=6379) + +# Configure Logging +app.logger.addHandler(logging.StreamHandler(sys.stdout)) +app.logger.setLevel(logging.DEBUG) + +def PgFetch(query, method): + + # Connect to an existing database + conn = psycopg2.connect("host='postgres' dbname='linode' user='postgres' password='linode123'") + + # Open a cursor to perform database operations + cur = conn.cursor() + + # Query the database and obtain data as Python objects + dbquery = cur.execute(query) + + if method == 'GET': + result = cur.fetchone() + else: + result = "" + + # Make the changes to the database persistent + conn.commit() + + # Close communication with the database + cur.close() + conn.close() + return result + +@app.route('/') +def hello_world(): + if cache.exists('visitor_count'): + cache.incr('visitor_count') + count = (cache.get('visitor_count')).decode('utf-8') + update = PgFetch("UPDATE visitors set visitor_count = " + count + " where site_id = 1;", "POST") + else: + cache_refresh = PgFetch("SELECT visitor_count FROM visitors where site_id = 1;", "GET") + count = int(cache_refresh[0]) + cache.set('visitor_count', count) + cache.incr('visitor_count') + count = (cache.get('visitor_count')).decode('utf-8') + return 'Hello Linode! This page has been viewed %s time(s).' % count + +@app.route('/resetcounter') +def resetcounter(): + cache.delete('visitor_count') + PgFetch("UPDATE visitors set visitor_count = 0 where site_id = 1;", "POST") + app.logger.debug("reset visitor count") + return "Successfully deleted redis and postgres counters" + +{{}} + +4. Add a `requirements.txt` file with the required Python dependencies: + + {{< file "web/requirements.txt" text >}} +flask +gunicorn +psycopg2 +redis +{{}} + +## Docker Compose + +Docker Compose will be used to be define the connections between containers and their configuration settings. + +Create a `docker-compose.yml` file in the `flask-microservice` directory and add the following: + +{{< file "docker-compose.yml" yaml >}} +version: '3' +services: + # Define the Flask web application + flaskapp: + + # Build the Dockerfile that is in the web directory + build: ./web + + # Always restart the container regardless of the exit status; try and restart the container indefinitely + restart: always + + # Expose port 8000 to other containers (not to the host of the machine) + expose: + - "8000" + + # Mount the web directory within the container at /home/flask/app/web + volumes: + - ./web:/home/flask/app/web + + # Don't create this container until the redis and postgres containers (below) have been created + depends_on: + - redis + - postgres + + # Link the redis and postgres containers together so that they can talk to one another + links: + - redis + - postgres + + # Pass environment variables to the flask container (this debug level lets you see more useful information) + environment: + FLASK_DEBUG: 1 + + # Deploy with 3 replicas in the case of failure of one of the containers (only in Docker Swarm) + deploy: + mode: replicated + replicas: 3 + + # Define the redis Docker container + redis: + + # use the redis:alpine image: https://hub.docker.com/_/redis/ + image: redis:alpine + restart: always + deploy: + mode: replicated + replicas: 3 + + # Define the redis NGINX forward proxy container + nginx: + + # build the nginx Dockerfile: http://bit.ly/2kuYaIv + build: nginx/ + restart: always + + # Expose port 80 to the host machine + ports: + - "80:80" + deploy: + mode: replicated + replicas: 3 + + # The Flask application needs to be available for NGINX to make successful proxy requests + depends_on: + - flaskapp + + # Define the postgres database + postgres: + restart: always + # Use the postgres alpine image: https://hub.docker.com/_/postgres/ + image: postgres:alpine + + # Mount an initialization script and the persistent postgresql data volume + volumes: + - ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql + - ./postgres/data:/var/lib/postgresql/data + + # Pass postgres environment variables + environment: + POSTGRES_PASSWORD: linode123 + POSTGRES_DB: linode + + # Expose port 5432 to other Docker containers + expose: + - "5432" +{{}} + + +## Test the Microservice + +1. Use Docker Compose to build all of the images and start the microservice: + + cd flask-microservice/ && docker-compose up + + You should see all of the services start in your terminal. + +2. Open a new terminal window and make a request to the example application: + + curl localhost + + {{< output >}} +Hello Linode! This page has been viewed 1 time(s). +{{< /output >}} + +3. Reset the page hit counter: + + curl localhost/resetcounter + + {{< output >}} +Successfully deleted redis and postgres counters +{{< /output >}} + +4. Return to the terminal window where Docker Compose was started to view the standard out log: + + {{< output >}} +flaskapp_1 | DEBUG in linode [/home/flask/app/web/linode.py:56]: +flaskapp_1 | reset visitor count +{{< /output >}} + +## Using Containers in Production: Best Practices + +The containers used in the example microservice are intended to demonstrate the following best practices for using containers in production: + +Containers should be: + +1. **Ephemeral**: It should be easy to stop, destroy, rebuild, and redeploy containers with minimal setup and configuration. + + The Flask microservice is an ideal example of this. The entire microservice can be brought up or down using Docker Compose. No additional configuration is necessary after the containers are running, which makes it easy to modify the application. + +2. **Disposable**: Ideally, any single container within a larger application should be able to fail without impacting the performance of the application. Using a `restart: on-failure` option in the `docker-compose.yml` file, as well as having a replica count, makes it possible for some containers in the example microservice to fail gracefully while still serving the web application with no degradation to the end user. + + {{< note >}} +The replica count directive will only be effective when this configuration is deployed as part of a [Docker Swarm](/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/), which is not covered in this guide. +{{< /note >}} + +3. **Quick to start**: Avoiding additional installation steps in the Docker file, removing dependencies that aren't needed, and building a target image that can be reused are three of the most important steps in making a web application that has a quick initialization time within Docker. The example application uses short, concise, prebuilt Dockerfiles in order to minimize initialization time. + +4. **Quick to stop**: Validate that a `docker kill --signal=SIGINT {APPNAME}` stops the application gracefully. This, along with a restart condition and a replica condition, will ensure that when containers fail, they will be brought back online efficiently. + +5. **Lightweight**: Use the smallest base container that provides all of the utilities that are needed to build and run your application. Many Docker images are based on [Alpine Linux](https://alpinelinux.org/about/), a light and simple Linux distribution that takes up only 5MB in a Docker image. Using a small distro saves network and operational overhead and greatly increases container performance. The example application uses alpine images where applicable (NGINX, Redis, and PostgreSQL), and uses a python-slim base image for the Gunicorn / Flask application. + +6. **Stateless**: Since they are ephemeral, containers typically shouldn't maintain state. An application's state should be stored in a separate, persistent data volume, as is the case with the microservice's PostgreSQL data store. The Redis key-value store does maintain data within a container, but this data is not application-critical; the Redis store will fail back gracefully to the database should the container not be able to respond. + +7. **Portable**: All of an app's dependencies that are needed for the container runtime should be locally available. All of the example microservice's dependencies and startup scripts are stored in the directory for each component. These can be checked into version control, making it easy to share and deploy the application. + +8. **Modular**: Each container should have one responsibility and one process. In this microservice, each of the major processes (NGINX, Python, Redis, and PostgreSQL) is deployed in a separate container. + +9. **Logging**: All containers should log to `STDOUT`. This uniformity makes it easy to view the logs for all of the processes in a single stream. + +10. **Resilient**: The example application restarts its containers if they are exited for any reason. This helps give your Dockerized application high availability and performance, even during maintenance periods. 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/docker-container-communication.md b/docs/applications/containers/docker-container-communication.md index 72e69aae0a0..b60f39d8cba 100644 --- a/docs/applications/containers/docker-container-communication.md +++ b/docs/applications/containers/docker-container-communication.md @@ -17,6 +17,8 @@ external_resources: - '[Connecting Containers](https://deis.com/blog/2016/connecting-docker-containers-1/)' --- +![Connect Docker Containers](/docs/assets/connect-docker-containers/Connect_Docker_Containers.jpg) + When using [Docker](https://www.docker.com) to containerize your applications, it is common practice to run each component of the application in a separate container. For example, a website might have a web server, application, and database, each running in its own container. Configuring the containers to communicate with each other and the host machine can be a challenge. This guide will use a simple example app to demonstrate the basics of Docker container communication. The app will consist of a Node.js app that reads data from a PostgreSQL database. @@ -371,4 +373,4 @@ By default, Docker automatically assigns an IP address to each container and to However, Docker also provides a number of convenient wrappers around these connections to help you speed up and simplify the connection process. You can connect your Docker host to a container with a unique hostname, or directly link two containers. Using Docker Compose can simplify this process even further by allowing you to declare connections in the `docker-compose.yml` file so that they are automatically established when the containers are brought up. -There are other connection options that were not covered in this guide. For example, you can run a container using `--net="host"`, which will share that container's network stack with the Docker host: `localhost` on the container will point to `localhost` on the Docker host. You can also expose ports on each Docker container, or configre the default bridge network for more flexibility. For a more in-depth discussion of these options, see the links in the More Info section below. +There are other connection options that were not covered in this guide. For example, you can run a container using `--net="host"`, which will share that container's network stack with the Docker host: `localhost` on the container will point to `localhost` on the Docker host. You can also expose ports on each Docker container, or configure the default bridge network for more flexibility. For a more in-depth discussion of these options, see the links in the More Info section below. 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/containers/how-to-deploy-apps-with-rancher.md b/docs/applications/containers/how-to-deploy-apps-with-rancher.md new file mode 100644 index 00000000000..7e249703030 --- /dev/null +++ b/docs/applications/containers/how-to-deploy-apps-with-rancher.md @@ -0,0 +1,122 @@ +--- +author: + name: Angel + email: docs@linode.com +description: 'This guide shows how to use the open source Rancher platform to deploy applications and containers to remote hosts.' +keywords: ["rancher", "docker", "kubernetes", "container"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2017-11-29 +modified: 2018-01-16 +modified_by: + name: Linode +title: 'How to Deploy Apps with Rancher' +external_resources: + - '[Rancher Official Docs](http://rancher.com/docs/)' +--- + +## What is Rancher? + +Rancher is a tool that streamlines container usage on a host. Rancher sits on top of Docker and Kubernetes, giving you the ability to stand up clusters of containers with the push of a button. The web front-end gives the you and your users access to an impressive catalog of ready-to-go containerized tools that can be deployed from within Rancher. + +This guide shows you how to install [Rancher](http://rancher.com/quick-start/), then deploy services with Docker and Kubernetes. + +## Prepare the Environment + +Two Docker containers are needed to run Rancher: + +* `rancher/server` hosts the front-end portal, and + +* `rancher/agent` connects remote hosts with the Rancher server. + +In this guide both of these containers will be run on the same Linode. If you would like to add additional Linodes as Rancher agents, you will need to install Docker on each Linode. + +### Install Docker CE + +You will need a Linode with Docker CE installed to follow along with the steps in this guide. Rancher uses specific versions of Docker to interface with Kubernetes. + + curl https://releases.rancher.com/install-docker/17.03.sh | sh + +### Modify Permissions + +Add the user to the `docker` group, so that Docker commands can be run without `sudo`: + + usermod -aG docker $USER + +## Install Rancher + +1. Launch the Rancher container: + + sudo docker run -d --restart=unless-stopped -p 8080:8080 rancher/server:stable + +2. Verify that Rancher is running: + + curl -I localhost:8080 + + {{< output >}} +HTTP/1.1 200 OK +{{< /output >}} + + docker ps + + {{< output >}} +60e73830a1bb rancher/server:stable "/usr/bin/entry /usr…" 5 minutes ago Up 5 minutes 3306/tcp, 0.0.0.0:8080->8080/tcp objective_meninsky +{{< /output >}} + +## Deploy Apps with Rancher + +The applications in Rancher's catalog are Dockerfiles. These Dockerfiles are viewable and editable from within Rancher. The DockerFiles define the *stack*, or the fleet of individual containers necessary to bring up a service, and groups them in one place. + +### Add a Host + +In order for Rancher to deploy containers on remote hosts, each host must be registered with the Rancher server. This guide will use the Linode running the Rancher server as the host, but any number of Linodes can be added using the these steps. + +1. In a browser, navigate to `yourLinodesIP:8080` to view the Rancher landing page: + + ![Rancher first screen](/docs/assets/Rancher/rancher_first_screen.png "Rancher first screen") + +2. A banner at the top of the screen will prompt you to add a host. Click **Add a host** to begin this process. + + ![Rancher Host Register](/docs/assets/Rancher/register_host.png "Rancher Host Register") + +3. Enter your Linode's IP address into the box in Item 4. This will customize the registration command in item 5 for your system. Copy this command and run it from the command line. + +4. Run `docker-ps` after the registration process to verify that `rancher/agent` is running on the host: + + {{< output >}} +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +a16cd00943fc rancher/agent:v1.2.7 "/run.sh run" 3 minutes ago Restarting (1) 43 seconds ago rancher-agent +60e73830a1bb rancher/server:stable "/usr/bin/entry /usr…" 3 hours ago Up 3 hours 3306/tcp, 0.0.0.0:8080->8080/tcp objective_meninsky +{{}} + +5. Go back to the Rancher web application and press **Close**. You will be taken to the catalog, where Rancher lists all of the applications that can be installed through the platform: + + ![Rancher Catalog](/docs/assets/Rancher/catalog.png "Rancher Catalog") + +### Install the Ghost Blogging Engine + +As an example, install the Ghost blog platform. This will showcase Rancher's interaction with Docker. + +1. In the catalog, select Ghost, leave the default settings and click the create button. + + ![Ghost screen](/docs/assets/Rancher/rancher_ghost.png "Ghost screen") + +2. Query your Linode with `docker ps`, and Docker will show what containers are running on the machine: + + 144d0a07c315 rancher/pause-amd64@sha256:3b3a29e3c90ae7762bdf587d19302e62485b6bef46e114b741f7d75dba023bd3 "/pause" 44 seconds ago Up 42 seconds k8s_rancher-pause_ghost-ghost-1-c9fb3da6_default_afe1ff4d-f7ce-11e7-a624-0242ac110002_0 + fddce07374a0 ghost@sha256:77b1b1cbe16ae029dee383e7bd0932bd2ca0bd686e206cb1abd14e84555088d2 "docker-entrypoint..." 44 seconds ago Up 43 seconds + +3. Navigate to your Linode's IP address from the browser for the Ghost landing page. + + You have just used Rancher to deploy a containerized Ghost service. + +4. In the Rancher interface, click on the Ghost container: + + ![Rancher Options](/docs/assets/Rancher/rancher_options.png "Rancher Options") + + This page monitors performance, and offers you options to manage each individual container. Everything from spawning a shell within the container, to changing environment variables can be handled from within this page. To remove the application on the Apps screen, click **Delete**. + +### Launch Services From Rancher + +You can launch individual custom containers with Rancher in the **Containers** section of the application: + +![Rancher Config](/docs/assets/Rancher/rancher_container_config.png "Rancher Config") diff --git a/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster.md b/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster.md index c2afd56aed4..e527654fb63 100644 --- a/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster.md +++ b/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster.md @@ -46,7 +46,7 @@ The steps in this guide create a two-node cluster. Evaluate your own resource re 1. Create two Linodes with at least 2GB memory within the same data center. -2. For each node, go into the Remote Access tab of your Linode manager and add a [private IP](/docs/networking/remote-access#adding-private-ip-addresses). It is possible to build a Kubernetes cluster using public IPs between data centers, but performance and security may suffer. +2. For each node, go into the Remote Access tab of your Linode Manager and add a [private IP](/docs/networking/remote-access#adding-private-ip-addresses). It is possible to build a Kubernetes cluster using public IPs between data centers, but performance and security may suffer. 3. Configure a firewall with [UFW](/docs/security/firewalls/configure-firewall-with-ufw) or [iptables](/docs/security/firewalls/control-network-traffic-with-iptables) to ensure only the two nodes can communicate with each other. diff --git a/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment.md b/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment.md index 96659a14949..177d48766c7 100644 --- a/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment.md +++ b/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment.md @@ -20,7 +20,7 @@ external_resources: --- -![docker_banner](/docs/assets/install_docker.jpg) +![How to Install Docker and Pull Images for Container Deployment](/docs/assets/install_docker.jpg) In this guide, you'll install Docker and pull down images that can be deployed as containers. 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..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: @@ -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/containers/install_docker_ce.md b/docs/applications/containers/install_docker_ce.md index 153bb46e14c..e289ee067b3 100644 --- a/docs/applications/containers/install_docker_ce.md +++ b/docs/applications/containers/install_docker_ce.md @@ -16,7 +16,7 @@ show_on_rss_feed: false -1. As of this writing, the recommended Docker installation is Docker CE. Remove any older installations of Docker that may be on your system: +1. At the time of writing, the recommended Docker installation is Docker CE. Remove any older installations of Docker that may be on your system: apt remove docker docker-engine docker.io diff --git a/docs/applications/containers/node-js-web-server-deployed-within-docker.md b/docs/applications/containers/node-js-web-server-deployed-within-docker.md index ce9ca0c2da2..3d9f9a32bba 100644 --- a/docs/applications/containers/node-js-web-server-deployed-within-docker.md +++ b/docs/applications/containers/node-js-web-server-deployed-within-docker.md @@ -5,7 +5,7 @@ author: description: 'Deploy a Node.js Server in a Docker Container.' keywords: ["docker", "node.js", "node", "debian", "ubuntu", "web server", "javascript", "container"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2015-03-23 +modified: 2018-01-18 modified_by: name: Linode published: 2015-03-23 @@ -21,46 +21,29 @@ external_resources: Node.js is a server-side, JavaScript package, often used for various cloud applications. Docker is a container platform. With Docker, users can download applications without the hassle of the installation and configuration process. ## Install Docker -Use the Docker-maintained install script for Debian or Ubuntu. For other operating systems, see the [Docker Installation](https://docs.docker.com/en/latest/installation/) guides. -1. Install Docker: - - curl -sSL https://get.docker.com/ | sh - - {{< note >}} -The current version of the Docker script checks for AUFS support and displays the warning below if support is not found: - -Warning: current kernel is not supported by the linux-image-extra-virtual - package. We have no AUFS support. Consider installing the packages - linux-image-virtual kernel and linux-image-extra-virtual for AUFS support. - + sleep 10 - -This message can be safely ignored, as the script will continue the installation using DeviceMapper or OverlayFS. If you require AUFS support, you will need to configure a [distribution supplied](/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub) or [custom compiled](/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu) kernel. -{{< /note >}} - -2. If necessary, add the non-root user to the "docker" group: - - sudo usermod -aG docker example_user +{{< content "install_docker_ce.md" >}} ## Download the Docker Node.js Server Image The Docker Hub user page for Linode can be accessed [here](https://hub.docker.com/u/linode/). Select the **server-node-js** image for configuration information. {{< note >}} -Docker images made for one operating system can be used on servers running a different OS. The **server-node-js** Ubuntu 14.04 image was tested on Debian 7, Ubuntu 14.04, Centos 7 and Fedora 21. After Docker installation on Centos and Fedora, run the `sudo service docker start` command. +Docker images made for one operating system can be used on servers running a different OS. The **server-node-js** Ubuntu 14.04 image was tested on Debian 7, Ubuntu 14.04, CentOS 7 and Fedora 21. After Docker installation on CentOS and Fedora, run the `sudo service docker start` command. {{< /note >}} 1. Search for **linode** images: - sudo docker search linode + docker search linode 2. Download the **linode/server-node-js** image: - sudo docker pull linode/server-node-js + docker pull linode/server-node-js ## Run the Docker Container, Node.js, and the Web Server -Note that when an image downloads, no image containers run. -1. Run, create or activate a new container. Forward the Linode's port 80 to port 3000 of the container: +1. Run the Linode container. Forward the Linode's port 80 to port 3000 of the container: + + docker run -d -p 80:3000 linode/server-node-js {{< note >}} This command runs the docker image as a daemon. @@ -69,4 +52,3 @@ This command runs the docker image as a daemon. 2. Test the server at `example.com/test.htm`, replacing `example.com` with your Linode's IP address. A page with "Test File" should appear. The [Docker Hub image page](https://registry.hub.docker.com/u/linode/server-node-js/) has information explaining what the Docker image contains. - diff --git a/docs/applications/messaging/advanced-irssi-usage.md b/docs/applications/messaging/advanced-irssi-usage.md index 3d69058daaa..c0306dca869 100644 --- a/docs/applications/messaging/advanced-irssi-usage.md +++ b/docs/applications/messaging/advanced-irssi-usage.md @@ -79,9 +79,9 @@ The following plugins are popular among the Linode community: - [trackbar.pl](http://scripts.irssi.org/scripts/trackbar.pl) generates a horizontal rule in a channel to mark the last time you viewed this channel's window. This is useful if you are monitoring a number of channels and would like to be reminded of the last time you viewed this window. - [go.pl](http://scripts.irssi.org/scripts/go.pl) provides advanced completion for accessing windows with a `/go` command that offers tab completion for all windows, and is even able to complete based on character combinations from the middle of the channel or private message names. - [nickcolor.pl](http://scripts.irssi.org/scripts/nickcolor.pl) colorizes the nicknames of all members of a channel, based on activity and join time, in an effort to make the flow of conversation a bit easier to read. -- [screen\_away.pl](http://scripts.irssi.org/scripts/screen_away.pl) automatically detects if your Irssi session resides within an attached or detached screen session. If your screen session is detached, this plugin will set your status to away. When you reattach to the session, the plugin unsets the away status. +- [screen_away.pl](http://scripts.irssi.org/scripts/screen_away.pl) automatically detects if your Irssi session resides within an attached or detached screen session. If your screen session is detached, this plugin will set your status to away. When you reattach to the session, the plugin unsets the away status. - [highlite.pl](http://scripts.irssi.org/scripts/highlite.pl) collects in one window all channel events like joins, parts, and quits. -- [adv\_windowlist.pl](/docs/assets/633-adv_windowlist.pl) provides a more useful and configurable window list if you have trouble with the default window list implementation. +- [adv_windowlist.pl](/docs/assets/633-adv_windowlist.pl) provides a more useful and configurable window list if you have trouble with the default window list implementation. You can install all of these scripts to "autorun" when you invoke Irssi the next time by issuing the following sequence of commands: 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-ejabberd-on-ubuntu-8-04-hardy.md b/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy.md index 8985b496805..f505b14f7e1 100644 --- a/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy.md +++ b/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy.md @@ -16,7 +16,7 @@ title: 'Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)' -Ejabberd is a Jabber daemon written in the Erlang programming language. It is extensible, flexible and very high performance. With a web-based interface, and broad support for [XMPP standards](http://xmpp.org/), ejabberd is a great choice for a multi-purpose XMPP server. Ejabberd can be considered "heavyweight" by critics, but mostly due to the requirements of the Erlang run-times. However, it is incredibly robust and can scale to support incredibly heavy loads: ebjabberd servers are believed to be the backbone for some of the largest Jabber servers running now. +Ejabberd is a Jabber daemon written in the Erlang programming language. It is extensible, flexible and very high performance. With a web-based interface, and broad support for [XMPP standards](http://xmpp.org/), ejabberd is a great choice for a multi-purpose XMPP server. Ejabberd can be considered "heavyweight" by critics, but mostly due to the requirements of the Erlang run-times. However, it is incredibly robust and can scale to support incredibly heavy loads: ejabberd servers are believed to be the backbone for some of the largest Jabber servers running now. This installation process assumes that you have a working installation of Ubuntu 8.04 (Hardy) and have followed the steps in the [getting started](/docs/getting-started/) guide, and now have an up to date instance of the Ubuntu Hardy operating system and are connected to your Linode via SSH and have root access. Once you've completed these requirements we can begin with the installation process. diff --git a/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty.md b/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty.md index e890825283b..0e365ccc1c5 100644 --- a/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty.md +++ b/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty.md @@ -16,7 +16,7 @@ title: 'Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)' -Ejabberd is a Jabber daemon written in the Erlang programming language. It is extensible, flexible and very high performance. With a web-based interface, and broad support for [XMPP standards](http://xmpp.org/), ejabberd is a great choice for a multi-purpose XMPP server. Ejabberd can be considered "heavyweight" by critics, because of the requirements of the Erlang run-times. However, it is incredibly robust and can scale to support incredibly heavy loads. Ebjabberd servers are believed to be the backbone for some of the largest Jabber servers running now. +Ejabberd is a Jabber daemon written in the Erlang programming language. It is extensible, flexible and very high performance. With a web-based interface, and broad support for [XMPP standards](http://xmpp.org/), ejabberd is a great choice for a multi-purpose XMPP server. Ejabberd can be considered "heavyweight" by critics, because of the requirements of the Erlang run-times. However, it is incredibly robust and can scale to support incredibly heavy loads. Ejabberd servers are believed to be the backbone for some of the largest Jabber servers running now. This installation process assumes that you have a working installation of Ubuntu 9.04 (Jaunty), have followed the steps in the [getting started](/docs/getting-started/) guide, and now have an up to date instance of the Ubuntu Jaunty operating system. We also assume you are connected to your Linode via SSH as root. Once you've completed these requirements, we can begin with the installation process. 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/messaging/using-irssi-for-internet-relay-chat.md b/docs/applications/messaging/using-irssi-for-internet-relay-chat.md index 433f2f5dd54..a79fbc81f8d 100644 --- a/docs/applications/messaging/using-irssi-for-internet-relay-chat.md +++ b/docs/applications/messaging/using-irssi-for-internet-relay-chat.md @@ -243,7 +243,7 @@ The `hilight` command will highlight certain words used in the channels you have /hilight word -To remove a hilight, use the command: +To remove a `hilight`, use the command: /dehilight word 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/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04.md b/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04.md index b3f47cef1fe..504708be00b 100644 --- a/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04.md +++ b/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04.md @@ -2,7 +2,7 @@ author: name: Angel email: docs@linode.com -description: 'This guide shows how to install and set up Redmine, a free and open-source project management web application, written using Ruby on Rails, that is is cross-platform and cross-database.' +description: 'This guide shows how to install and set up Redmine, a free and open-source project management web application, written using Ruby on Rails, that is cross-platform and cross-database.' keywords: ["nginx", "ubuntu", "redmine"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-09-14 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) diff --git a/docs/applications/project-management/jupyter-nobook-on-jekyll.md b/docs/applications/project-management/jupyter-nobook-on-jekyll.md index 8fc4b8ec50a..887a29ee538 100644 --- a/docs/applications/project-management/jupyter-nobook-on-jekyll.md +++ b/docs/applications/project-management/jupyter-nobook-on-jekyll.md @@ -267,7 +267,7 @@ Adding an image through markdown requires having the images stored in the projec ![GG Plot](/docs/assets/jekyll/jekyll_ggplot.png "GG Plot") - This is just an example. Adding interactive graphs using Javascript libraries is beyond the scope of this guide. + This is just an example. Adding interactive graphs using JavaScript libraries is beyond the scope of this guide. ### Use a CDN to Support MathJax diff --git a/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10.md b/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10.md index 38b1631e5ce..9d7a0145fe8 100644 --- a/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10.md +++ b/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10.md @@ -36,7 +36,7 @@ external_resources: ## Install Taskwarrior -Install Taskwarriror with the command: +Install Taskwarrior with the command: sudo apt install task diff --git a/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker.md b/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker.md index ecf0b247822..027765cc506 100644 --- a/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker.md +++ b/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker.md @@ -2,8 +2,8 @@ author: name: Sam Foo email: sfoo@linode.com -description: 'Create a remote desktop on a Linode.' -og_description: 'This guide will demonstrate how to deploy Apache Guacamole, a utility that allows you to create a virtual cloud desktop on Linode' +description: 'Use Apache Guacamole, a clientless HTML5 web application, to access your virtual cloud desktop right from a browser. This guide will show how to install Apache Guacamole through Docker on your Linode.' +og_description: 'Use Apache Guacamole, a clientless HTML5 web application, to access your virtual cloud desktop right from a browser. This guide will show how to install Apache Guacamole through Docker on your Linode.' keywords: ["remote desktop", "Apache Guacamole", "TeamViewer", "VNC", "Chrome OS", "xfce", "unity"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' modified: 2017-12-08 @@ -16,7 +16,7 @@ external_resources: - '[Apache Tomcat](https://tomcat.apache.org/)' --- -![Apache Guacamole](/docs/assets/guacamole/Apache_Guacamole.jpg) +![Virtual Cloud Desktop Using Apache Guacamole](/docs/assets/guacamole/Apache_Guacamole.jpg) Apache Guacamole is an HTML5 application useful for accessing a remote desktop through RDP, VNC, and other protocols. You can create a virtual cloud desktop where applications can be accessed through a web browser. This guide will cover the installation of Apache Guacamole through Docker, then access a remote desktop environment hosted on a Linode. 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/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/assets/1463-begin-install.PNG b/docs/assets/1463-begin-install.png similarity index 100% rename from docs/assets/1463-begin-install.PNG rename to docs/assets/1463-begin-install.png diff --git a/docs/assets/1464-generate-key.PNG b/docs/assets/1464-generate-key.png similarity index 100% rename from docs/assets/1464-generate-key.PNG rename to docs/assets/1464-generate-key.png diff --git a/docs/assets/1465-new-passphrase.PNG b/docs/assets/1465-new-passphrase.png similarity index 100% rename from docs/assets/1465-new-passphrase.PNG rename to docs/assets/1465-new-passphrase.png diff --git a/docs/assets/1466-new-public-key.PNG b/docs/assets/1466-new-public-key.png similarity index 100% rename from docs/assets/1466-new-public-key.PNG rename to docs/assets/1466-new-public-key.png diff --git a/docs/assets/1468-warning.PNG b/docs/assets/1468-warning.png similarity index 100% rename from docs/assets/1468-warning.PNG rename to docs/assets/1468-warning.png diff --git a/docs/assets/1470-random-generating.PNG b/docs/assets/1470-random-generating.png similarity index 100% rename from docs/assets/1470-random-generating.PNG rename to docs/assets/1470-random-generating.png diff --git a/docs/assets/1473-private-key-file-location.PNG b/docs/assets/1473-private-key-file-location.png similarity index 100% rename from docs/assets/1473-private-key-file-location.PNG rename to docs/assets/1473-private-key-file-location.png diff --git a/docs/assets/1474-save-private-key.PNG b/docs/assets/1474-save-private-key.png similarity index 100% rename from docs/assets/1474-save-private-key.PNG rename to docs/assets/1474-save-private-key.png diff --git a/docs/assets/1475-saved-session.PNG b/docs/assets/1475-saved-session.png similarity index 100% rename from docs/assets/1475-saved-session.PNG rename to docs/assets/1475-saved-session.png diff --git a/docs/assets/R/rstudio-server-login.png b/docs/assets/R/rstudio-server-login.png new file mode 100644 index 00000000000..149c3ffb938 Binary files /dev/null and b/docs/assets/R/rstudio-server-login.png differ diff --git a/docs/assets/R/rstudio-server-page.png b/docs/assets/R/rstudio-server-page.png new file mode 100644 index 00000000000..3817acca506 Binary files /dev/null and b/docs/assets/R/rstudio-server-page.png differ diff --git a/docs/assets/Rancher/catalog.png b/docs/assets/Rancher/catalog.png new file mode 100644 index 00000000000..2b05e760429 Binary files /dev/null and b/docs/assets/Rancher/catalog.png differ diff --git a/docs/assets/Rancher/rancher_container_config.png b/docs/assets/Rancher/rancher_container_config.png new file mode 100644 index 00000000000..fb46a732348 Binary files /dev/null and b/docs/assets/Rancher/rancher_container_config.png differ diff --git a/docs/assets/Rancher/rancher_first_screen.png b/docs/assets/Rancher/rancher_first_screen.png new file mode 100644 index 00000000000..c0f9882c018 Binary files /dev/null and b/docs/assets/Rancher/rancher_first_screen.png differ diff --git a/docs/assets/Rancher/rancher_ghost.png b/docs/assets/Rancher/rancher_ghost.png new file mode 100644 index 00000000000..0663accf895 Binary files /dev/null and b/docs/assets/Rancher/rancher_ghost.png differ diff --git a/docs/assets/Rancher/rancher_options.png b/docs/assets/Rancher/rancher_options.png new file mode 100644 index 00000000000..dffa17282eb Binary files /dev/null and b/docs/assets/Rancher/rancher_options.png differ diff --git a/docs/assets/Rancher/register_host.png b/docs/assets/Rancher/register_host.png new file mode 100644 index 00000000000..6543f66c620 Binary files /dev/null and b/docs/assets/Rancher/register_host.png differ 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 00000000000..ed3b6bc348b Binary files /dev/null and b/docs/assets/apache-ssl/SSL_Certificates_with_Apache_on_CentOS_7_smg.jpg differ diff --git a/docs/assets/backing-up-data/Backing_Up_Your_Data_smg.jpg b/docs/assets/backing-up-data/Backing_Up_Your_Data_smg.jpg new file mode 100644 index 00000000000..7f1cef0cf1c Binary files /dev/null and b/docs/assets/backing-up-data/Backing_Up_Your_Data_smg.jpg differ diff --git a/docs/assets/connect-docker-containers/Connect_Docker_Containers.jpg b/docs/assets/connect-docker-containers/Connect_Docker_Containers.jpg new file mode 100644 index 00000000000..eb300e8b542 Binary files /dev/null and b/docs/assets/connect-docker-containers/Connect_Docker_Containers.jpg differ 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 00000000000..667aa700302 Binary files /dev/null and b/docs/assets/multicraft/Installing_Multicraft_on_Ubuntu_smg.jpg differ diff --git a/docs/assets/node-nginx/How_to_Install_Nodejs_and_Nginx_on_Debian_smg.jpg b/docs/assets/node-nginx/How_to_Install_Nodejs_and_Nginx_on_Debian_smg.jpg new file mode 100644 index 00000000000..23ff110f2a0 Binary files /dev/null and b/docs/assets/node-nginx/How_to_Install_Nodejs_and_Nginx_on_Debian_smg.jpg differ 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 00000000000..544c4a19f98 Binary files /dev/null and b/docs/assets/nodebalancer/NodeBalancer_Reference_Guide_smg.jpg differ 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/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 00000000000..bcb361d8dd3 Binary files /dev/null and b/docs/assets/phpmyadmin-debian-mysql/How_to_Install_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg differ 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 00000000000..1b10ef0e039 Binary files /dev/null and b/docs/assets/pritunl/Pritunl_VPN_Server_and_Management_Panel_on_Ubuntu_1404_smg.jpg differ diff --git a/docs/assets/squid/Creating_an_HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg b/docs/assets/squid/Creating_an_HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg new file mode 100644 index 00000000000..f0d227646a0 Binary files /dev/null and b/docs/assets/squid/Creating_an_HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg differ 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 00000000000..2af6395c657 Binary files /dev/null and b/docs/assets/ssh-tunnel/Setting_up_an_SSH_Tunnel_with_Your_Linode_for_Safe_Browsing_smg.jpg differ 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 00000000000..fdd40a2e70f Binary files /dev/null and b/docs/assets/ssl-cert-centos/Obtain_a_Commercially_Signed_SSL_Certificate_on_CentOS_and_Fedora_smg.jpg differ 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/assets/thingsboard/ThingsBoard.jpg b/docs/assets/thingsboard/ThingsBoard.jpg new file mode 100644 index 00000000000..e2770f57f2e Binary files /dev/null and b/docs/assets/thingsboard/ThingsBoard.jpg differ diff --git a/docs/assets/thingsboard/latest-telemetry.png b/docs/assets/thingsboard/latest-telemetry.png new file mode 100644 index 00000000000..6a2df14b031 Binary files /dev/null and b/docs/assets/thingsboard/latest-telemetry.png differ diff --git a/docs/assets/thingsboard/login.png b/docs/assets/thingsboard/login.png new file mode 100644 index 00000000000..f0c1737320d Binary files /dev/null and b/docs/assets/thingsboard/login.png differ diff --git a/docs/assets/thingsboard/pi-dashboard.png b/docs/assets/thingsboard/pi-dashboard.png new file mode 100644 index 00000000000..2bf70ea19ec Binary files /dev/null and b/docs/assets/thingsboard/pi-dashboard.png differ 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 00000000000..6590f961182 Binary files /dev/null and b/docs/assets/zimbra/Install_Zimbra_Open_Source_Edition_on_Ubuntu_1404_smg.jpg differ 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 >}} 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/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 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..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: @@ -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/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/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/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/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/mysql/how-to-install-mysql-on-centos-6.md b/docs/databases/mysql/how-to-install-mysql-on-centos-6.md index 24f52362856..38477478d1a 100644 --- a/docs/databases/mysql/how-to-install-mysql-on-centos-6.md +++ b/docs/databases/mysql/how-to-install-mysql-on-centos-6.md @@ -18,7 +18,7 @@ external_resources: - '[MySQLdb User''s Guide](http://mysql-python.sourceforge.net/MySQLdb.html)' --- -![mysql_centOS6_banner](/docs/assets/How_to_Install_MySQL_on_CentOS_6_smg.jpg) +![How to Install MySQL on CentOS 6](/docs/assets/How_to_Install_MySQL_on_CentOS_6_smg.jpg) MySQL is a popular database management system used for web and server applications. This guide will introduce how to install, configure and manage MySQL on a Linode running CentOS 6. diff --git a/docs/databases/mysql/how-to-install-mysql-on-debian-7.md b/docs/databases/mysql/how-to-install-mysql-on-debian-7.md index 6f5e19e4dcd..a1c7a507bf8 100644 --- a/docs/databases/mysql/how-to-install-mysql-on-debian-7.md +++ b/docs/databases/mysql/how-to-install-mysql-on-debian-7.md @@ -19,7 +19,7 @@ external_resources: - '[MySQL Tuner Tutorial](http://www.debiantutorials.com/tuning-mysql-with-mysqltuner-to-increase-efficiency-and-performance/)' --- -![mysql_debian7_banner](/docs/assets/How_to_Install_MySQL_on_Debian_7_smg.jpg) +![How to Install MySQL on Debian 7](/docs/assets/How_to_Install_MySQL_on_Debian_7_smg.jpg) MySQL is a popular database management system used for web and server applications. This guide will introduce how to install, configure and manage MySQL on a Linode running Debian 7 (Wheezy). diff --git a/docs/databases/mysql/how-to-install-mysql-on-debian-8.md b/docs/databases/mysql/how-to-install-mysql-on-debian-8.md index 63dd187dca2..0963f378d16 100644 --- a/docs/databases/mysql/how-to-install-mysql-on-debian-8.md +++ b/docs/databases/mysql/how-to-install-mysql-on-debian-8.md @@ -154,7 +154,7 @@ If you forget your root MySQL password, it can be reset. 1. Stop the current MySQL server instance. - sudo systemctl stop mysql.serivce + sudo systemctl stop mysql.service 2. Use dpkg to re-run the configuration process MySQL goes through on first installation. You will again be asked to set a root password. diff --git a/docs/databases/mysql/install-mysql-phpmyadmin-debian-7.md b/docs/databases/mysql/install-mysql-phpmyadmin-debian-7.md index 6510264463e..20325512c88 100644 --- a/docs/databases/mysql/install-mysql-phpmyadmin-debian-7.md +++ b/docs/databases/mysql/install-mysql-phpmyadmin-debian-7.md @@ -16,6 +16,8 @@ external_resources: - '[phpMyAdmin Documentation Page](http://www.phpmyadmin.net/home_page/docs.php)' --- +![Install MySQL with phpMyAdmin on Debian](/docs/assets/phpmyadmin-debian-mysql/How_to_Install_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg) + phpMyAdmin is a web application that provides a GUI to aid in MySQL database administration. It supports multiple MySQL servers and is a robust and easy alternative to using the MySQL command line client. {{< note >}} 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 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/centos-5.md b/docs/databases/postgresql/centos-5.md index 307d92c7d3c..c4e7a4e19d6 100644 --- a/docs/databases/postgresql/centos-5.md +++ b/docs/databases/postgresql/centos-5.md @@ -121,7 +121,7 @@ local all all md5 {{< /file-excerpt >}} -As root, restart the Postgresql service: +As root, restart the PostgreSQL service: service postgresql restart diff --git a/docs/databases/postgresql/configure-postgresql.md b/docs/databases/postgresql/configure-postgresql.md index 585bec55bfd..9534e8b1f15 100644 --- a/docs/databases/postgresql/configure-postgresql.md +++ b/docs/databases/postgresql/configure-postgresql.md @@ -57,7 +57,7 @@ The contents of the configuration file are broken up into different sections: |---|---| |File Locations | Defines where values of the database will be stored | |Connections and Authentications | Allows you to define the settings for connections, security, and authentication | -|Resource Usage | Defines the paramaters (memory, space) usable by PostgreSQL. | +|Resource Usage | Defines the parameters (memory, space) usable by PostgreSQL. | |Write Ahead Log | Configures *Write-Ahead logging*, which if properly configured, can result in a lower amount of disk writes. | |Replication | Control the way replications and replication data is handled by the server. | |Query Tuning | This set of directives can help you optimize the process of querying to the database. | @@ -115,7 +115,7 @@ To allow a user on a remote system to log in to the `example` database using a n host example exampleuser 192.0.2.0 password {{< /file-excerpt >}} -The entires in this table are read in order for each incoming connection attempt. The first entry that matches will be applied to the connection. As a result, more general configurations (matching all users, all databases, or all IP addresses) should come at the end of the file, and should generally have tighter restrictions. More specific matches with less stringent authentication methods (such as the example above) should be placed at the beginning of the list. +The entries in this table are read in order for each incoming connection attempt. The first entry that matches will be applied to the connection. As a result, more general configurations (matching all users, all databases, or all IP addresses) should come at the end of the file, and should generally have tighter restrictions. More specific matches with less stringent authentication methods (such as the example above) should be placed at the beginning of the list. {{< note >}} See the [official pg_hba documentation](https://www.postgresql.org/docs/9.3/static/auth-pg-hba-conf.html) for details about each of the configuration options. 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/postgresql/fedora-12.md b/docs/databases/postgresql/fedora-12.md index b646bbc47cd..94b1cc5c0b5 100644 --- a/docs/databases/postgresql/fedora-12.md +++ b/docs/databases/postgresql/fedora-12.md @@ -120,7 +120,7 @@ local all all md5 {{< /file-excerpt >}} -As root, restart the Postgresql service: +As root, restart the PostgreSQL service: service postgresql restart diff --git a/docs/databases/postgresql/fedora-13.md b/docs/databases/postgresql/fedora-13.md index 27eed3c1604..d41ba70ef55 100644 --- a/docs/databases/postgresql/fedora-13.md +++ b/docs/databases/postgresql/fedora-13.md @@ -120,7 +120,7 @@ local all all md5 {{< /file-excerpt >}} -As root, restart the Postgresql service: +As root, restart the PostgreSQL service: service postgresql restart diff --git a/docs/databases/postgresql/fedora-14.md b/docs/databases/postgresql/fedora-14.md index 547efb3c9d8..6f7cf8ceff8 100644 --- a/docs/databases/postgresql/fedora-14.md +++ b/docs/databases/postgresql/fedora-14.md @@ -47,7 +47,7 @@ The current version of the database server will be installed, along with several # Configure PostgreSQL -### Set the Postgresql Password +### Set the PostgreSQL Password Set a password for the "postgres" user by issuing the following command (be sure to substitute your postgres password for "CHANGME" below): @@ -128,7 +128,7 @@ Change it to the following to use password authentication: local all all md5 {{< /file-excerpt >}} -As root, restart the Postgresql service: +As root, restart the PostgreSQL service: service postgresql restart diff --git a/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows.md b/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows.md index 5491f2e1402..81681339105 100644 --- a/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows.md +++ b/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows.md @@ -16,7 +16,7 @@ external_resources: - '[PostgreSQL Documentation](http://www.postgresql.org/docs/)' --- -PgAdmin is a free, open-source PostgreSQL database administration GUI for Microsoft Windows, Apple MacOS X and Linux systems. It offers database server information retrieval, development, testing, and ongoing maintenance. This guide will help you install pgAdmin on Windows, providing secure, remote access to PostgreSQL databases. It is assumed that you have already installed PostgreSQL on your Linode in accordance with our [PostgreSQL installation guides](/docs/databases/postgresql/). +PgAdmin is a free, open-source PostgreSQL database administration GUI for Microsoft Windows, Mac OS X, and Linux systems. It offers database server information retrieval, development, testing, and ongoing maintenance. This guide will help you install pgAdmin on Windows, providing secure, remote access to PostgreSQL databases. It is assumed that you have already installed PostgreSQL on your Linode in accordance with our [PostgreSQL installation guides](/docs/databases/postgresql/). ## Install pgAdmin diff --git a/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04.md b/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04.md index cf4c4fc05de..061af7c0ba3 100644 --- a/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04.md +++ b/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04.md @@ -49,7 +49,7 @@ Install PostgreSQL from the Ubuntu package repository: By default, PostgreSQL will create a Linux user named `postgres` to access the database software. {{< caution >}} -The `postgres` user should not be used for for other purposes (e.g. connecting to other networks). Doing so presents a serious risk to the security of your databases. +The `postgres` user should not be used for other purposes (e.g. connecting to other networks). Doing so presents a serious risk to the security of your databases. {{< /caution >}} 1. Change the `postgres` user's Linux password: diff --git a/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7.md b/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7.md index f6d518ff422..9dca469c912 100644 --- a/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7.md +++ b/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7.md @@ -401,7 +401,7 @@ While specific settings and privileges can be applied to a role when it's create ALTER ROLE examplerole CREATEDB; - A number of permissions can be applied when creating or altering a role. See the [PostgeSQL Documentation](https://www.postgresql.org/docs/9.2/static/sql-createrole.html) for more details. + A number of permissions can be applied when creating or altering a role. See the [PostgreSQL Documentation](https://www.postgresql.org/docs/9.2/static/sql-createrole.html) for more details. 3. Use `\du` to confirm your changes. You'll see that the "Create DB" attribute is listed next to the `examplerole` user: 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/databases/postgresql/ubuntu-10-04-lucid.md b/docs/databases/postgresql/ubuntu-10-04-lucid.md index c4370c0def6..1273c4b8921 100644 --- a/docs/databases/postgresql/ubuntu-10-04-lucid.md +++ b/docs/databases/postgresql/ubuntu-10-04-lucid.md @@ -136,7 +136,7 @@ local all all md5 {{< /file-excerpt >}} -If you changed the authentication method as shown above, restart Postgresql with the following command: +If you changed the authentication method as shown above, restart PostgreSQL with the following command: /etc/init.d/postgresql-8.4 restart diff --git a/docs/databases/postgresql/ubuntu-10-10-maverick.md b/docs/databases/postgresql/ubuntu-10-10-maverick.md index 44b99724a20..ee98e9f2992 100644 --- a/docs/databases/postgresql/ubuntu-10-10-maverick.md +++ b/docs/databases/postgresql/ubuntu-10-10-maverick.md @@ -134,7 +134,7 @@ local all all md5 {{< /file-excerpt >}} -If you changed the authentication method as shown above, restart Postgresql with the following command: +If you changed the authentication method as shown above, restart PostgreSQL with the following command: /etc/init.d/postgresql-8.4 restart diff --git a/docs/databases/postgresql/ubuntu-9-10-karmic.md b/docs/databases/postgresql/ubuntu-9-10-karmic.md index 1135eb3cd10..7a718188e20 100644 --- a/docs/databases/postgresql/ubuntu-9-10-karmic.md +++ b/docs/databases/postgresql/ubuntu-9-10-karmic.md @@ -137,7 +137,7 @@ local all all md5 {{< /file-excerpt >}} -If you changed the authentication method as shown above, restart Postgresql with the following command: +If you changed the authentication method as shown above, restart PostgreSQL with the following command: /etc/init.d/postgresql-8.4 restart diff --git a/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04.md b/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04.md index e684877db3e..aa54fdb3030 100644 --- a/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04.md +++ b/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04.md @@ -138,7 +138,7 @@ local all all md5 {{< /file-excerpt >}} -If you changed the authentication method as shown above, restart Postgresql with the following command: +If you changed the authentication method as shown above, restart PostgreSQL with the following command: service postgresql restart 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/development/ci/automate-builds-with-jenkins-on-ubuntu.md b/docs/development/ci/automate-builds-with-jenkins-on-ubuntu.md index 0c73489644b..aa3cfdca526 100644 --- a/docs/development/ci/automate-builds-with-jenkins-on-ubuntu.md +++ b/docs/development/ci/automate-builds-with-jenkins-on-ubuntu.md @@ -64,11 +64,11 @@ Before starting automating your entire workflow, it's necessary to understand th As you can see the most basic process consist of three phases: build - test - deploy. Each time you make changes on your distributed version control system you trigger an automation cycle on the Jenkins server. The entire set of instructions for running the process is on the `Jenkinsfile` located at the root of your source repository. That single file tells the server *what* to do, *when* to do it and *how* you want those tasks to be performed. -## Write an Example NodeJS Application +## Write an Example Node.js Application As mentioned in the previous section, the automation process starts by making a commit to a Version Control System. -Create a new repository in GitHub. This guide will use a simple NodeJS application to showcase how Jenkins Pipelines works, select your `.gitignore` accordingly and don't forget to initialize it with a `README`: +Create a new repository in GitHub. This guide will use a simple Node.js application to showcase how Jenkins Pipelines works, select your `.gitignore` accordingly and don't forget to initialize it with a `README`: ![New GitHub repository](/docs/assets/jenkins/jenkins-gh-new-repo.png) @@ -145,7 +145,7 @@ This example will use two Docker containers, one to serve `app.js` using Express 2. Create the `Dockerfile` and `package.json` for the `express-image`. - {{< file "~/jenkins-guide/express-image/Dockerfile" >}} + {{< file "~/jenkins-guide/express-image/Dockerfile" >}} FROM node:6-alpine # Create server working directory @@ -165,11 +165,11 @@ EXPOSE 9000 CMD ["npm", "start"] {{< /file >}} - This image runs by default `app.js` when launched. You can think of it as the "dockerized" version of the web application. + This image runs by default `app.js` when launched. You can think of it as the "dockerized" version of the web application. 3. The Dockerfile copies a `package.json` file from the root of your project directory into the new image; create this file and add the following content: - {{< file "~/jenkins-guide/express-image/package.json" json >}} + {{< file "~/jenkins-guide/express-image/package.json" json >}} { "name": "express-image", "version": "1.0.0", @@ -192,7 +192,7 @@ CMD ["npm", "start"] 4. Create the `Dockerfile` for the `test-image`. - {{< file "~/jenkins-guide/test-image/Dockerfile" conf >}} + {{< file "~/jenkins-guide/test-image/Dockerfile" conf >}} FROM node:6-alpine # Create Reports directory @@ -214,11 +214,11 @@ EXPOSE 9000 CMD ["npm", "test"] {{< /file >}} - This image creates a Report folder (which will be used later) and installs dependencies from `package.json`. On start, it executes the Mocha tests. + This image creates a Report folder (which will be used later) and installs dependencies from `package.json`. On start, it executes the Mocha tests. 5. Add a `package.json` file for your testing image: - {{< file "~/jenkins-guide/test-image/package.json" conf >}} + {{< file "~/jenkins-guide/test-image/package.json" conf >}} { "name": "test-image", "version": "1.0.0", @@ -246,7 +246,7 @@ CMD ["npm", "test"] } {{< /file >}} - This JSON file contains all the necessary dependencies, including `mocha-junit-reporter` that will be needed by Jenkins for tests storage. Notice that the test script is configured with the `mochaFile` option that uses the image's report folder specified in the `Dockerfile`. + This JSON file contains all the necessary dependencies, including `mocha-junit-reporter` that will be needed by Jenkins for tests storage. Notice that the test script is configured with the `mochaFile` option that uses the image's report folder specified in the `Dockerfile`. Your final project distribution will be similar to this: @@ -345,7 +345,7 @@ Using the package maintained by the Jenkins project allows you to use a more rec 7. Use the Linode Manager to reboot your server to apply these changes. - {{< caution >}} + {{< caution >}} It's out of the scope of this guide to establish security parameters for Jenkins remote installation. However, be aware of these critical points that need to be addressed in a production environment: - When you add `jenkins` user to the Docker group you are technically giving it `root` permissions. @@ -442,7 +442,7 @@ Code blocks are delimited by curly brackets {} and no semicolons are used. Each * Create Docker images, dockerize applications, pull images. * Almost any action you can think of is possible through steps. -All this actions can be executed inside your `agent` or you can also instruct Jenkins to remotely perform any of them via SSH. As you can see there are endless automation possibilities. In a simple scenario, only one pipeline executing its stages sequentially is enough to achieve the desired final state, but you can define pipelines to run in parallel if needed. For detailed information about Jenkins Declarative Pipeline Syntax, see the official [documentation.](https://jenkins.io/doc/book/pipeline/syntax/) +All these actions can be executed inside your `agent` or you can also instruct Jenkins to remotely perform any of them via SSH. As you can see there are endless automation possibilities. In a simple scenario, only one pipeline executing its stages sequentially is enough to achieve the desired final state, but you can define pipelines to run in parallel if needed. For detailed information about Jenkins Declarative Pipeline Syntax, see the official [documentation.](https://jenkins.io/doc/book/pipeline/syntax/) ## Start Working with Pipelines @@ -511,7 +511,7 @@ From here you can obtain valuable information regarding: 1) your build number, 2 ### Automate Your Entire Process with Jenkins -The `Jenkinsfile` template uses a very basic pipeline structure with only three stages. You can customize it to accommodate as many stages as needed. The final Pipeline structure is dictated by the project complexity and the development guidelines you must follow. Since you've already walked through the NodeJS example, you know how to design a pipeline that automates each stage. For the purpose of this guide, the resulting pipeline should: +The `Jenkinsfile` template uses a very basic pipeline structure with only three stages. You can customize it to accommodate as many stages as needed. The final Pipeline structure is dictated by the project complexity and the development guidelines you must follow. Since you've already walked through the Node.js example, you know how to design a pipeline that automates each stage. For the purpose of this guide, the resulting pipeline should: * Build Stage - Create both images and abort any further testing or deployment if an error is encountered. @@ -792,7 +792,7 @@ It's time to commit the complete Jenkinsfile to your Jenkins server and trigger ### Configure Automatic Triggers -You can set Jenkins to scan your repository periodically. To do so just click again on the gear icon on the Pipeline view and then click the **Configure** link. There are many options available. Find **Scan Repository Triggers** and check the box **Periodically if not otherwise run**. You can chose any amount of time and for this example, one minute will be selected. +You can set Jenkins to scan your repository periodically. To do so just click again on the gear icon on the Pipeline view and then click the **Configure** link. There are many options available. Find **Scan Repository Triggers** and check the box **Periodically if not otherwise run**. You can choose any amount of time and for this example, one minute will be selected. ![Repository Triggers](/docs/assets/jenkins/jenkins-bo-scan-gh.png) @@ -831,7 +831,7 @@ Now, induce an error on the `BUILD` stage. 1. Edit your `express-image/package.json`. Change the express package name to `express-ERROR` to simulate a mistyping. - {{< file-excerpt "~/jenkins-guide/express-image/package.json" json >}} + {{< file-excerpt "~/jenkins-guide/express-image/package.json" json >}} "dependencies": { "express-ERROR": "^4.13.3" } 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..57fccf2d5c4 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 @@ -310,7 +310,7 @@ As the name implies, Wercker applications correspond to each of your projects. B #### jClocks Example -Similar to the configuration files, you have several environmental variables to setup. +Similar to the configuration files, you have several environmental variables to set up. 1. For the first example you need a SSH key pair for communication with your Linode. Click on the **Environment** tab: @@ -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/frameworks/apache-tomcat-on-debian-6-squeeze.md b/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze.md index 40d99f71b9b..3a0f4998ab0 100644 --- a/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze.md +++ b/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze.md @@ -87,7 +87,7 @@ Issue the following command to restart the Tomcat server, which will allow this /etc/init.d/tomcat6 restart -Congratulations! You know have a working Apache Tomcat installation. +Congratulations! You now have a working Apache Tomcat installation. # More Information diff --git a/docs/development/frameworks/webpy-on-debian-5-lenny.md b/docs/development/frameworks/webpy-on-debian-5-lenny.md index be439f0fec0..18a9689afb5 100644 --- a/docs/development/frameworks/webpy-on-debian-5-lenny.md +++ b/docs/development/frameworks/webpy-on-debian-5-lenny.md @@ -197,7 +197,7 @@ application = app.wsgifunc() This program connects to the PostgreSQL database "webpy" and looks in the table "notes" for a note that matches the text "a note." If the note is found, the program returns the text "a note is found"; otherwise, the page will return "no notes are found." Make sure there is a role, or user, in your PostgreSQL database called "webpy" with the credentials specified on the `db` line of this example. -At the PosgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: +At the PostgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: CREATE DATABASE webpy; GRANT ALL ON notes TO webpy; diff --git a/docs/development/frameworks/webpy-on-debian-6-squeeze.md b/docs/development/frameworks/webpy-on-debian-6-squeeze.md index f928564db12..618fc13a773 100644 --- a/docs/development/frameworks/webpy-on-debian-6-squeeze.md +++ b/docs/development/frameworks/webpy-on-debian-6-squeeze.md @@ -199,7 +199,7 @@ application = app.wsgifunc() This program connects to the PostgreSQL database "webpy" and looks in the table "notes" for a note that matches the text "a note." If the note is found, the program returns the text "a note is found"; otherwise, the page will return "no notes are found." Make sure there is a role, or user, in your PostgreSQL database called "webpy" with the credentials specified on the `db` line of this example. -At the PosgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: +At the PostgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: CREATE DATABASE webpy; GRANT ALL ON notes TO webpy; diff --git a/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid.md b/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid.md index feab3c41775..cc3a2abac99 100644 --- a/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid.md +++ b/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid.md @@ -186,7 +186,7 @@ application = app.wsgifunc() This program connects to the PostgreSQL database "webpy" and looks in the table "notes" for a note that matches the text "a note." If the note is found, the program returns the text "a note is found"; otherwise, the page will return "no notes are found." Make sure there is a role or user in your PostgreSQL database called "webpy" with the credentials specified on the `db` line of this example. -At the PosgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: +At the PostgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: CREATE DATABASE webpy; GRANT ALL ON notes TO webpy; diff --git a/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick.md b/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick.md index c2b6189856c..8c9eec879e5 100644 --- a/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick.md +++ b/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick.md @@ -175,7 +175,7 @@ application = app.wsgifunc() This program connects to the PostgreSQL database "webpy" and looks in the table "notes" for a note that matches the text "a note". If the note is found, the program returns the text "a note is found"; otherwise, the page will return "no notes are found". Make sure there is a role, or user, in your PostgreSQL database called "webpy" with the credentials specified on the `db` line of this example. -At the PosgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: +At the PostgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: CREATE DATABASE webpy; GRANT ALL ON notes TO webpy; diff --git a/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin.md b/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin.md index e821ab22c0c..5e3147a1288 100644 --- a/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin.md +++ b/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin.md @@ -198,7 +198,7 @@ This program connects to the PostgreSQL database "webpy" and looks in the table For more information about PostgreSQL, see our [PostgreSQL guides](/docs/databases/postgresql). {{< /note >}} -At the PosgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: +At the PostgreSQL prompt, issue the following commands to the PostgreSQL shell statement to create the required database and tables. The "webpy" user for PostgreSQL must already exist: CREATE DATABASE webpy; GRANT ALL ON notes TO webpy; diff --git a/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy.md b/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy.md index 6087eba53bf..482c16d076b 100644 --- a/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy.md +++ b/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy.md @@ -24,12 +24,12 @@ external_resources: Yesod is a web framework based on the purely functional programming language Haskell. It is designed for productive development of type-safe, RESTful, and high performance web applications. This guide describes the required process for deploying Yesod and Nginx web server, MySQL database on Debian 7 (Wheezy). {{< note >}} -The steps required in this guide require root privileges. Be sure to run the steps below as root or with the sudo prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. +The steps required in this guide require root privileges. Be sure to run the steps below as root or with the sudo prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups/) guide. {{< /note >}} ## Prerequisites -Before you begin installing and configuring the components described below, please make sure you've followed our instructions in the [Getting Started](/docs/getting-started) guide for setting your hostname. Here's how to check. +Before you begin installing and configuring the components described below, please make sure you've followed our instructions in the [Getting Started](/docs/getting-started/) guide for setting your hostname. Here's how to check. 1. Enter the following commands to view the hostname: @@ -196,7 +196,7 @@ We don't need to modify this configuration file, it's acceptable as is. So you o If your Linode has a firewall, the port ``3000`` is probably inaccessible from outside, so you will not be able to see your site at http://www.yoursite.com:3000/. This port is only for testing or developing, so don't open it on your firewall. Instead, you can set up an SSH tunnel on your Linode, and view your site at http://localhost:3000/ via this tunnel. Please check [Setting up an SSH Tunnel with Your Linode for Safe Browsing](/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/) for more details. -You may have noticed that we haven't configure Nginx yet. In fact, Yesod applications contain an http server called Warp, which is written in Haskell, and has a very fast run-time. Without http servers like Apache or Nginx installed, you can run Yesod applications as standalones. This feature is similar to the Express framework on Node.js. +You may have noticed that we haven't configure Nginx yet. In fact, Yesod applications contain an http server called Warp, which is written in Haskell, and has a very fast run-time. Without http servers like Apache or Nginx installed, you can run standalone Yesod applications. This feature is similar to the Express framework on Node.js. The initial setup of your first Yesod site has been finished. To start more advanced development of your Yesod site, please read [The Yesod Book](http://www.yesodweb.com/book/) for more details. @@ -372,4 +372,3 @@ Link the above file into ``/etc/nginx/sites-enabled``, and restart ``nginx``: You can check it at *http://www.yoursite.com/* now. The installation and configuration of Yesod working with Nginx and MySQL are finished. - diff --git a/docs/development/go/_index.md b/docs/development/go/_index.md new file mode 100644 index 00000000000..99249bc4aa6 --- /dev/null +++ b/docs/development/go/_index.md @@ -0,0 +1,12 @@ +--- +author: + name: Linode + email: docs@linode.com +description: '' +keywords: ["development", "go", "golang"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: [] +published: 2018-01-29 +title: Go +show_in_lists: true +--- diff --git a/docs/development/go/install-go-on-ubuntu.md b/docs/development/go/install-go-on-ubuntu.md new file mode 100644 index 00000000000..01b2bb2ce72 --- /dev/null +++ b/docs/development/go/install-go-on-ubuntu.md @@ -0,0 +1,89 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'This guide shows how to install the Go programming language on Ubuntu.' +og_description: 'Go is a statically typed, compiled programming language developed by Google. This guide will show you how to install Go on Ubuntu.' +keywords: ["Go", "Go Programming", "Golang", "Ubuntu"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-01-29 +modified: 2018-01-29 +modified_by: + name: Linode +title: 'How to Install Go on Ubuntu' +--- + +## What is Go? + +[Go](https://golang.org/) is a compiled, statically typed programming language developed by Google. Many modern applications, including Docker, Kubernetes, and Caddy, are written in Go. + +## Install Go + +1. Use `curl` or `wget` to download the current binary for Go from the official [download page](https://golang.org/dl/). As of this writing, the current version is 1.9.3. Check the download page for updates, and replace `1.9.3` with the most recent stable version if necessary. + + curl -O https://storage.googleapis.com/golang/go1.9.3.linux-amd64.tar.gz + +2. Verify the `.tar` file using `sha256sum`: + + sha256sum go1.9.3.linux-amd64.tar.gz + + {{< output >}} +a4da5f4c07dfda8194c4621611aeb7ceaab98af0b38bfb29e1be2ebb04c3556c go1.9.3.linux-amd64.tar.gz +{{< /output >}} + +3. Extract the tarball: + + tar -xvf go1.9.3.linux-amd64.tar.gz + +4. Adjust the permissions and move the `go` directory to `/usr/local`: + + sudo chown -R root:root ./go + sudo mv go /usr/local + +## Adjust the Path Variable + +1. Using a text editor, open the `~/.profile` file and add the following two lines to the bottom of the file: + + {{< file-excerpt "~/.profile" conf >}} +export GOPATH=$HOME/go +export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin +{{< /file-excerpt >}} + +2. Save the file, and load the commands into the current shell instance: + + source ~/.profile + +## Test the Installation + +According to [the official documentation](https://golang.org/doc/install#testing), the following steps are the recommended way to test the success of the installation: + +1. In your home directory create a folder named `go`, this will be your workspace: + + mkdir go + +2. Within that directory create `/src/hello` and within that directory copy and paste the contents of the file below: + + mkdir -p go/src/hello && cd go/src/hello + touch hello.go + + {{< file "hello.go" go >}} +package main + +import "fmt" + +func main() { + fmt.Printf("hello, world\n") +} +{{}} + +3. Build the `hello.go` file: + + go build + +4. Run the script: + + ./hello + + {{< output >}} +hello, world +{{< /output >}} 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..dd62aa5c40a --- /dev/null +++ b/docs/development/iot/install-thingsboard-iot-dashboard.md @@ -0,0 +1,297 @@ +--- +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)' +--- + +![View IoT Data with ThingsBoard](/docs/assets/thingsboard/ThingsBoard.jpg) + +## What is 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 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 data streams 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 diff --git a/docs/development/java/java-development-wildfly-centos-7.md b/docs/development/java/java-development-wildfly-centos-7.md index df70e449955..ee0395facb8 100644 --- a/docs/development/java/java-development-wildfly-centos-7.md +++ b/docs/development/java/java-development-wildfly-centos-7.md @@ -21,7 +21,7 @@ external_resources: JBoss AS (Renamed to [WildFly](http://wildfly.org/)) has been used for many years as one of the best known performing & free community Java Application Server. The attention even increased when Red Hat started providing commercial support to its enterprise version [JBoss EAP](http://www.redhat.com/en/technologies/jboss-middleware/application-platform) with support to on-premises, virtual, or cloud. Red Hat also provides commercial support for Red Hat Enterprise Linux & building huge ecosystem of multiple products to serve its clients. -Many software companies working with Java technology are targeting the stack of WildFly on CentOS so it supports clients with limited budget, and also supports JBoss EAP on Redhat Enterprise Linux for customers looking for commercial support, so they ensure their software meets various customer segments. +Many software companies working with Java technology are targeting the stack of WildFly on CentOS so it supports clients with limited budget, and also supports JBoss EAP on RedHat Enterprise Linux for customers looking for commercial support, so they ensure their software meets various customer segments. This article has been introduced to show one of the most common architecture in Java application hosting stack, it consists of: @@ -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..75be3805374 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 pyinotify 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-and-nginx-on-debian.md b/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian.md index b2f8c87aabc..cb548b6323e 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 @@ -217,7 +220,7 @@ Display the date and time. {{< /file >}} -2. Test the NGINX server at the IP address or domain. Use the "Go to test.js" button to test that the Node.js server is serving files. On the test page, the "Display the date and time" button will execute a client-side snippet of javascript to return the current time. +2. Test the NGINX server at the IP address or domain. Use the "Go to test.js" button to test that the Node.js server is serving files. On the test page, the "Display the date and time" button will execute a client-side snippet of JavaScript to return the current time.
[Node.js](http://nodejs.org) and [NGINX](http://nginx.com/) are now working together. Route requests to one server or the other depending on your needs. Node.js offers a large [API](http://nodejs.org/api) with many tools. With Node.js, a developer can stay within the JavaScript language while working client-side or server-side. diff --git a/docs/development/nodejs/how-to-install-nodejs.md b/docs/development/nodejs/how-to-install-nodejs.md index b563b74030e..170ed5b9238 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 >}} @@ -60,8 +60,8 @@ Compiling from source code is the most advanced installation method, though it c ## Node Package Manager (NPM) -A typical installation of Node.js includes the [Node Package Manager](https://github.com/npm/npm) (NPM). However, an exception is any Linux-distro-supplied version of Nodejs which would need the package `npm` installed. NPM is a package manager for Nodejs packages in the NPM repository. You can find extensive NPM documentation at [npmjs.com](https://docs.npmjs.com/). +A typical installation of Node.js includes the [Node Package Manager](https://github.com/npm/npm) (NPM). However, an exception is any Linux-distro-supplied version of Node.js which would need the package `npm` installed. NPM is a package manager for Node.js packages in the NPM repository. You can find extensive NPM documentation at [npmjs.com](https://docs.npmjs.com/). ## 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..a1db1691fda 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 @@ -264,7 +264,7 @@ CELERY_BIN=/home/celery/miniconda3/bin/celery r2 = list.delay() r2.get(timeout=1) - Depending on how quickly you enter the commands, the worker for `list` task may finish before the worker for `download` task and you may not see the linode logo in the list. Have a look at log files, like in step 7, and you will see which worker handled each task. + Depending on how quickly you enter the commands, the worker for `list` task may finish before the worker for `download` task and you may not see the Linode logo in the list. Have a look at log files, like in step 7, and you will see which worker handled each task. ## Monitor your Celery Cluster @@ -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/python/use-scrapy-to-extract-data-from-html-tags.md b/docs/development/python/use-scrapy-to-extract-data-from-html-tags.md index a244ff6286f..5947310b750 100644 --- a/docs/development/python/use-scrapy-to-extract-data-from-html-tags.md +++ b/docs/development/python/use-scrapy-to-extract-data-from-html-tags.md @@ -201,7 +201,7 @@ class LinkCheckerSpider(scrapy.Spider): ### Add Request Meta Information -The Spider will traverse links in queue recursively. When parsing a downloaded page, it does not have any information about the previously parsed pages such as which page was linking the the new one. To pass more information to the `parse` method, Scrapy provides a `Request.meta()` method that attaches some key/value pairs to the request. They are available in the response object in the `parse()` method. +The Spider will traverse links in queue recursively. When parsing a downloaded page, it does not have any information about the previously parsed pages such as which page was linking the new one. To pass more information to the `parse` method, Scrapy provides a `Request.meta()` method that attaches some key/value pairs to the request. They are available in the response object in the `parse()` method. The meta information is used for two purposes: @@ -525,4 +525,4 @@ Scrapy provides a telnet interface on port 6023 to monitor a running spider. The 6. Stop your scraping; - engine.stop() \ No newline at end of file + engine.stop() diff --git a/docs/development/r/_index.md b/docs/development/r/_index.md new file mode 100644 index 00000000000..8e899880d17 --- /dev/null +++ b/docs/development/r/_index.md @@ -0,0 +1,12 @@ +--- +author: + name: Linode + email: docs@linode.com +description: '' +keywords: ["development", "r", "data science", "statistics"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: [] +published: 2018-01-29 +title: R +show_in_lists: true +--- diff --git a/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy.md b/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy.md new file mode 100644 index 00000000000..688f3bda282 --- /dev/null +++ b/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy.md @@ -0,0 +1,135 @@ +--- +author: + name: Sam Foo + email: docs@linode.com +description: 'RStudio Server is a the web based version of RStudio for a desktop environment. Gain access to your R development environment from anywhere in the world.' +og_description: 'RStudio Server is a the web based version of RStudio for a desktop environment. Gain access to your R development environment from anywhere in the world.' +keywords: ['R', 'statistic', 'R Foundation', 'data visualization'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +modified: 2018-01-29 +modified_by: + name: Linode +published: 2018-01-29 +title: 'How to Deploy RStudio Server Using an NGINX Reverse Proxy' +--- + +## What is RStudio Server? + +[RStudio](https://www.rstudio.com) is an integrated development environment (IDE) for [R](https://www.r-project.org/), an open source statistical computing language. It includes debugging and plotting tools that make it easy to write, debug, and run R scripts. The IDE is available in both desktop and server configurations. By hosting the server configuration (RStudio Server) on a Linode, you can access the IDE from any computer with internet access. Since data analysis often uses large datasets and can be computationally expensive, keeping your data and running R scripts from a remote server can be more efficient than working from your personal computer. In addition, a professional edition is available that allows project sharing and simultaneous code editing for multiple users. + +## Before You Begin + +This guide assumes an R installation version of R 3.0.1+ and will show how to install RStudio Server 1.1. See our guide on [installing R on Ubuntu and Debian](/docs/development/r/how-to-install-r-on-ubuntu-and-debian) for steps on installing the latest version of R. + +The steps in this guide are for Ubuntu 16.04 and should be adapted to your specific distribution installation. + +## Install RStudio Server + +1. Download RStudio 1.1: + + wget https://download2.rstudio.org/rstudio-server-1.1.414-amd64.deb + +2. Install and use the gDebi package installer for the downloaded Debian package file: + + sudo apt install gdebi + sudo gdebi rstudio-server-1.1.414-amd64.deb + + If successful, the output should show `rstudio-server.service` as active. + + {{< output >}} +Created symlink from /etc/systemd/system/multi-user.target.wants/rstudio-server.service to /etc/systemd/system/rstudio-server.service. +● rstudio-server.service - RStudio Server + Loaded: loaded (/etc/systemd/system/rstudio-server.service; enabled; vendor preset: enabled) + Active: active (running) since Tue 2018-01-23 21:18:44 UTC; 1s ago + Process: 13676 ExecStart=/usr/lib/rstudio-server/bin/rserver (code=exited, status=0/SUCCESS) + Main PID: 13677 (rserver) + CGroup: /system.slice/rstudio-server.service + └─13677 /usr/lib/rstudio-server/bin/rserver + +Jan 23 21:18:44 localhost systemd[1]: Starting RStudio Server... +Jan 23 21:18:44 localhost systemd[1]: Started RStudio Server. +{{< /output >}} + +3. In a browser, navigate to your Linode's public IP address on port 8787 (i.e. `public-ip:8787`). Use your Unix user's username and password to log in when prompted: + + ![RStudio Server Login](/docs/assets/R/rstudio-server-login.png) + +4. Because you will be accessing RStudio through a reverse proxy, set RStudio Server to listen on localhost instead of a public IP. Open `rserver.conf` in a text editor and add the following content: + + {{< file-excerpt "/etc/rstudio/rserver.conf" >}} +# Server Configuration File +www-address=127.0.0.1 +{{< /file-excerpt >}} + +5. You can also set the configuration for each individual session. For example, the default session timeout is two hours. Change this to 30 minutes to conserve server resources: + + {{< file-excerpt "/etc/rstudio/rsession.conf" >}} +# R Session Configuration File +session-timeout-minutes=30 +{{< /file-excerpt >}} + +6. Check your configuration: + + sudo rstudio-server verify-installation + +7. If there are no issues, restart RStudio server to apply the changes: + + sudo rstudio-server restart + +## Set Up the Reverse Proxy + +Running Rstudio server behind a reverse proxy offers benefits such as being able to pick the URL endpoints and load balancing. + +1. Install NGINX: + + sudo apt install nginx + +2. Open `nginx.conf` in a text editor and add the following configuration: + + {{< file-excerpt "/etc/nginx/nginx.conf" nginx >}} +http { + # Basic Settings + # ... + + map $http_upgrade $connection_upgrade { + default upgrade; + '' close; + } +} +{{< /file-excerpt >}} + +3. Create an NGINX configuration in `/etc/nginx/conf.d/` called `rstudio.conf` with the following configuration. Replace `example.com` with the public IP address or FDQN of your Linode: + + {{< file-excerpt "/etc/nginx/conf.d/rstudio.conf" nginx >}} +server { + listen 80; + listen [::]:80; + + server_name example.com; + + location / { + proxy_pass http://localhost:8787/; + proxy_redirect http://localhost:8787/ $scheme://$host/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + proxy_read_timeout 20d; + } +} +{{< /file-excerpt >}} + +4. Check the NGINX configuration: + + sudo nginx -t + +5. If there are no errors, restart NGINX to apply the changes: + + sudo systemctl restart nginx + +6. In a browser, navigate to the public IP or FDQN of your Linode. After logging in, the RStudio IDE should be available from your browser: + + ![Rstudio Screen](/docs/assets/R/rstudio-server-page.png) + +{{< note >}} +If Rstudio does not load in the browser, you may need to clear your browser cache. +{{< /note >}} diff --git a/docs/development/r/how-to-install-r-on-ubuntu-and-debian.md b/docs/development/r/how-to-install-r-on-ubuntu-and-debian.md new file mode 100644 index 00000000000..aa610d06ad3 --- /dev/null +++ b/docs/development/r/how-to-install-r-on-ubuntu-and-debian.md @@ -0,0 +1,153 @@ +--- +author: + name: Sam Foo + email: docs@linode.com +description: 'R is a programming language commonly used for statistical analysis and data visualization. Learn how to install the base R package on your Linode.' +og_description: 'R is a programming language commonly used for statistical analysis and data visualization. Learn how to install the base R package on your Linode.' +keywords: ['R', 'statistics', 'R Foundation', 'data visualization'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +modified: 2018-01-29 +modified_by: + name: Linode +published: 2018-01-29 +title: 'How to install R on Ubuntu and Debian' +--- + + +## What is R? + +[R is a programming language](https://www.r-project.org/about.html) used for statistical analysis in addition to data visualization. The language is highly extensible through the [Comprehensive R Archive Network(CRAN)](https://cran.r-project.org/), which hosts more than 10,000 R packages for producing publication quality figures, specialized computational tools, and more. + +Although R can be installed through the default Debian or Ubuntu repository, the method outlined in this guide will ensure that you install the most up-to-date stable release. + +## Install R on Ubuntu 16.04 and Debian 9 + +1. Open `/etc/apt/sources.list` and add the following line to the end of the file: + + Ubuntu: + + deb http://cran.rstudio.com/bin/linux/ubuntu xenial/ + + Debian: + + deb http://cran.rstudio.com/bin/linux/debian stretch-cran34/ + +2. Add the key ID for the CRAN network: + + [Ubuntu GPG key](https://cran.rstudio.com/bin/linux/ubuntu/): + + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 + + [Debian GPG key](https://cran.rstudio.com/bin/linux/debian/): + + sudo apt install dirmngr + sudo apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF' + +3. Update the repository: + + sudo apt update + +4. Install the R binaries: + + sudo apt install r-base + +## Download Packages from CRAN + +1. Open the R interpreter: + + R + +2. The interpreter will open with some information about the version. Enter `install.packages("ggplot2")`: + + {{< output >}} +R version 3.4.3 (2017-11-30) -- "Kite-Eating Tree" +Copyright (C) 2017 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-gnu (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under certain conditions. +Type 'license()' or 'licence()' for distribution details. + + Natural language support but running in an English locale + +R is a collaborative project with many contributors. +Type 'contributors()' for more information and +'citation()' on how to cite R or R packages in publications. + +Type 'demo()' for some demos, 'help()' for on-line help, or +'help.start()' for an HTML browser interface to help. +Type 'q()' to quit R. + +> install.packages("ggplot2") +{{< /output >}} + +3. A list of available mirrors should appear. Pick the closest location to maximize transfer speeds: + + {{< output >}} +--- Please select a CRAN mirror for use in this session --- +HTTPS CRAN mirror + + 1: 0-Cloud [https] 2: Algeria [https] + 3: Australia (Canberra) [https] 4: Australia (Melbourne 1) [https] + 5: Australia (Melbourne 2) [https] 6: Australia (Perth) [https] + 7: Austria [https] 8: Belgium (Ghent) [https] + 9: Brazil (PR) [https] 10: Brazil (RJ) [https] +11: Brazil (SP 1) [https] 12: Brazil (SP 2) [https] +13: Bulgaria [https] 14: Canada (MB) [https] +15: Chile 1 [https] 16: Chile 2 [https] +17: China (Beijing) [https] 18: China (Hefei) [https] +19: China (Guangzhou) [https] 20: China (Lanzhou) [https] +21: China (Shanghai) [https] 22: Colombia (Cali) [https] +23: Czech Republic [https] 24: Denmark [https] +25: East Asia [https] 26: Ecuador (Cuenca) [https] +27: Estonia [https] 28: France (Lyon 1) [https] +29: France (Lyon 2) [https] 30: France (Marseille) [https] +31: France (Montpellier) [https] 32: France (Paris 2) [https] +33: Germany (Göttingen) [https] 34: Germany (Münster) [https] +35: Greece [https] 36: Iceland [https] +37: India [https] 38: Indonesia (Jakarta) [https] +39: Ireland [https] 40: Italy (Padua) [https] +41: Japan (Tokyo) [https] 42: Japan (Yonezawa) [https] +43: Malaysia [https] 44: Mexico (Mexico City) [https] +45: New Zealand [https] 46: Norway [https] +47: Philippines [https] 48: Serbia [https] +49: Singapore (Singapore 1) [https] 50: Spain (A Coruña) [https] +51: Spain (Madrid) [https] 52: Sweden [https] +53: Switzerland [https] 54: Taiwan (Chungli) [https] +55: Turkey (Denizli) [https] 56: Turkey (Mersin) [https] +57: UK (Bristol) [https] 58: UK (Cambridge) [https] +59: UK (London 1) [https] 60: USA (CA 1) [https] +61: USA (IA) [https] 62: USA (IN) [https] +63: USA (KS) [https] 64: USA (MI 1) [https] +65: USA (NY) [https] 66: USA (OR) [https] +67: USA (TN) [https] 68: USA (TX 1) [https] +69: Vietnam [https] 70: (HTTP mirrors) + + +Selection: +{{< /output >}} + +4. When quitting the interpreter, you will be prompted to save the workspace image. If you choose yes, this will save all the user defined objects for the next session: + + {{< output >}} +> q() +Save workspace image? [y/n/c]: +{{< /output >}} + +## RStudio IDE Desktop + +The R interpreter lacks features such as a debugger which may be needed for larger projects. RStudio is an IDE that comes with many tools for development right out of the box. + +1. Download RStudio as a Debian package: + + wget https://download1.rstudio.org/rstudio-xenial-1.1.414-amd64.deb + +2. Install the package: + + sudo dpkg -i rstudio-xenial-1.1.414-amd64.deb + + {{< note >}} +If there are missing dependencies, those can be installed with the following command: + + sudo apt install -f +{{< /note >}} diff --git a/docs/development/ror/ruby-on-rails-nginx-debian.md b/docs/development/ror/ruby-on-rails-nginx-debian.md index 6781d027aee..624382a8282 100644 --- a/docs/development/ror/ruby-on-rails-nginx-debian.md +++ b/docs/development/ror/ruby-on-rails-nginx-debian.md @@ -82,12 +82,12 @@ Use the Ruby Version Manager (RVM) to install Ruby. Be sure to replace `2.4.2` i 1. Install NGINX: - sudo apt install nginx + sudo apt install nginx 2. Phusion hosts a repository containing the latest version of Phusion Passenger. To add this to the package manager, first install the Phusion PGP key: - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 561F9B9CAC40B2F7 - sudo sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger stretch main > /etc/apt/sources.list.d/passenger.list' + sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 561F9B9CAC40B2F7 + sudo sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger stretch main > /etc/apt/sources.list.d/passenger.list' 3. Enable HTTPS support for APT: @@ -107,7 +107,7 @@ passenger_root /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini; passenger_ruby /usr/bin/passenger_free_ruby; {{< /file-excerpt >}} - {{< note >}} + {{< note >}} If the file does not already exist, you will need to create it and add the lines manually. {{< /note >}} @@ -143,13 +143,13 @@ If the application deployed uses MySQL, install the database server by following cd railsapp bundle install -2. Rails requires a Javascript runtime. Install Node JS: +2. Rails requires a JavaScript runtime. Install Node.js: sudo curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt install nodejs {{< note >}} -If your Gemfile already includes `therubyracer`, or you have another Javascript runtime on your system, you can skip this step. +If your Gemfile already includes `therubyracer`, or you have another JavaScript runtime on your system, you can skip this step. {{< /note >}} 3. Open `/etc/nginx/sites-available/default` in a text editor and remove `default_server` from the first two lines of the `server` block: @@ -168,7 +168,7 @@ server { The `passenger-config` command will generate several lines of output, similar to: - {{< output >}} + {{< output >}} passenger-config was invoked through the following Ruby interpreter: Command: /home/username/.rvm/gems/ruby-2.4.2/wrappers/ruby Version: ruby 2.4.2p198 (2017-09-14 revision 59899) [x86_64-linux] 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). diff --git a/docs/email/clients/install-roundcube-on-ubuntu.md b/docs/email/clients/install-roundcube-on-ubuntu.md index 8f4cc8b0fca..04f0ece411e 100644 --- a/docs/email/clients/install-roundcube-on-ubuntu.md +++ b/docs/email/clients/install-roundcube-on-ubuntu.md @@ -82,7 +82,7 @@ We will create a new virtual host for Roundcube in this section. This makes a ne sudo chmod 644 apache2-roundcube.sample.conf -5. Determine what type of Secure Socket Layer (SSL) encryption certificate is best for your Roundcube deployment. A [self-signed SSL certificate](/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate) is easy and free, but triggers an error in most modern browsers reporting that the connection is not private. [Let's Encrypt](https://letsencrypt.org/) offers browser trusted, free SSL certificates, but does not support [Extended Validatation](https://en.wikipedia.org/wiki/Extended_Validation_Certificate) (EV) or multi-domain ([wildcard](https://en.wikipedia.org/wiki/Wildcard_certificate)) certificates. To gain those features, a [commercial SSL certificate](/docs/security/ssl/obtaining-a-commercial-ssl-certificate) must be used. +5. Determine what type of Secure Socket Layer (SSL) encryption certificate is best for your Roundcube deployment. A [self-signed SSL certificate](/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate) is easy and free, but triggers an error in most modern browsers reporting that the connection is not private. [Let's Encrypt](https://letsencrypt.org/) offers browser trusted, free SSL certificates, but does not support [Extended Validation](https://en.wikipedia.org/wiki/Extended_Validation_Certificate) (EV) or multi-domain ([wildcard](https://en.wikipedia.org/wiki/Wildcard_certificate)) certificates. To gain those features, a [commercial SSL certificate](/docs/security/ssl/obtaining-a-commercial-ssl-certificate) must be used. 6. Once you have your SSL certificate, edit the following options in `apache2-roundcube.sample.conf` to match your desired configuration: @@ -151,7 +151,7 @@ PEAR is an acronym for "PHP Extension and Application Repository". Common PHP co PEAR will print an **install ok** confirmation message for each package that it successfully installs. In this case, a complete installation will look similar to this: - {{< output >}} + {{< output >}} install ok: channel://pear.php.net/Auth_SASL-1.1.0 install ok: channel://pear.php.net/Net_IDNA2-0.1.1 install ok: channel://pear.php.net/Mail_Mime-1.10.2 diff --git a/docs/email/iredmail/install-iredmail-on-ubuntu.md b/docs/email/iredmail/install-iredmail-on-ubuntu.md index 0e37207a8e1..0602c4f7610 100644 --- a/docs/email/iredmail/install-iredmail-on-ubuntu.md +++ b/docs/email/iredmail/install-iredmail-on-ubuntu.md @@ -17,7 +17,6 @@ title: 'Install iRedmail, Open-Source Mail Server, on Ubuntu' --- - ## Why Run a Mail Server? Running your own mail server has many benefits. It allows you to manage the size of your mailboxes and attachments, run hourly/daily email backups, view mail logs, and gives you the freedom to use any domain name available. The drawback is usually the in-depth and sometimes complicated process of installing all the necessary parts. This guide uses a streamlined process, the iRedMail install script, and should have you up and running your mail server in under 15 minutes. @@ -402,7 +401,7 @@ Familiarize yourself with the various files, configs, and settings listed in the [s]:https://code.google.com/p/iredmail/wiki/DNS_SPF [m]:http://www.mail-tester.com [r]:/docs/networking/dns/configure-your-linode-for-reverse-dns/ -[c]:https://www.linode.com/docs/websites/ssl/obtaining-a-commercial-ssl-certificate +[c]:https://www.linode.com/docs/security/ssl/obtaining-a-commercial-ssl-certificate/ [a]:https://www.linode.com/docs/networking/dns/introduction-to-dns-records#mx [f]:http://www.iredmail.org/forum/post30654.html#p30654 [p]:http://wiki.policyd.org/_detail/policyd_web_gui.png?id=screenshots diff --git a/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze.md b/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze.md index 289b56e8ebb..b45aa165dc5 100644 --- a/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze.md +++ b/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze.md @@ -20,7 +20,7 @@ Be sure to review this guide in its entirety before beginning the procedure outl # Set the Hostname -Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for [setting your hostname](/docs/getting-started#setting-the-hostname). Issue the following commands to make sure it is set properly: +Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for [setting your hostname](/docs/getting-started/#setting-the-hostname). Issue the following commands to make sure it is set properly: hostname hostname -f @@ -44,7 +44,7 @@ During the Mailman installation, you will be required to specify the languages t # Configure Mailman -Consider the "[Configure Virtual Hosting](/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze#configure-virtual-hosting)" section before preceding. In most cases where you will be hosting you will want to skip this section and continue with that procedure. Mailman requires a "base" list, from which it can send email to welcome new members to lists and send password reminders when needed. Create this list by issuing the following command: +Consider the "[Configure Virtual Hosting](/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/#configure-virtual-hosting)" section before preceding. In most cases where you will be hosting you will want to skip this section and continue with that procedure. Mailman requires a "base" list, from which it can send email to welcome new members to lists and send password reminders when needed. Create this list by issuing the following command: newlist mailman @@ -55,7 +55,7 @@ During the list creation process, Mailman will prompt you for the administrators {{< /file-excerpt >}} -Replace `example.com` and `lists.example.com` with the relevant domains for your instance. Ensure that you have configured the [MX Records](/docs/dns-guides/introduction-to-dns#mx) for both domains that you want to receive email with. Additionally, add the following lines to your `/etc/postfix/master.cf` file: +Replace `example.com` and `lists.example.com` with the relevant domains for your instance. Ensure that you have configured the [MX Records](/docs/dns-guides/introduction-to-dns/#mx) for both domains that you want to receive email with. Additionally, add the following lines to your `/etc/postfix/master.cf` file: {{< file-excerpt "/etc/postfix/master.cf" >}} mailman unix - n n - - pipe @@ -166,7 +166,7 @@ From this point forward, you can create new lists by issuing `newlist` commands # Configuring Mailman with Alternate Mail Configurations -If you wish to deploy Mailman on a system that has an existing mail set up, such as the [Postfix with Dovecot and MySQL](/docs/email/postfix/dovecot-mysql-debian-6-squeeze) or the [Postfix with Dovecot and System Users](/docs/email/postfix/dovecot-system-users-debian-6-squeeze) configurations described in other documents, consider the following recommendations: +If you wish to deploy Mailman on a system that has an existing mail set up, such as the [Postfix with Dovecot and MySQL](/docs/email/postfix/dovecot-mysql-debian-6-squeeze/) or the [Postfix with Dovecot and System Users](/docs/email/postfix/dovecot-system-users-debian-6-squeeze/) configurations described in other documents, consider the following recommendations: Complete your basic mail configuration according to the appropriate guide before beginning to install and configure Mailman. diff --git a/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu.md b/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu.md index 090be35bd75..e5850261a09 100644 --- a/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu.md +++ b/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu.md @@ -12,7 +12,7 @@ published: 2016-12-13 title: Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu --- -![configure_postfix_banner](/docs/assets/Configure_Postfix_to_Send_Mail_Using_Gmail_and_Google_Apps_on_Debian_or_Ubuntu_smg.jpg) +![Configure Postfix to Send Mail Using Gmail and Google Apps](/docs/assets/Configure_Postfix_to_Send_Mail_Using_Gmail_and_Google_Apps_on_Debian_or_Ubuntu_smg.jpg) Postfix is a Mail Transfer Agent (MTA) that can act as an SMTP server or client to send or receive email. There are many reasons why you would want to configure Postfix to send email using Google Apps and Gmail. One reason is to avoid getting your mail flagged as spam if your current server's IP has been added to a blacklist. diff --git a/docs/email/running-a-mail-server.md b/docs/email/running-a-mail-server.md index bd84ac9a385..31cbc7a3606 100644 --- a/docs/email/running-a-mail-server.md +++ b/docs/email/running-a-mail-server.md @@ -2,73 +2,86 @@ author: name: Linode email: docs@linode.com -description: 'Our guide to running a mail server on your Linode.' -keywords: ["mail server", "linode guide", "running a mail server", "linode quickstart guide"] +description: 'This guide shows how to run an email server on a Linode. It shows how to install the mail service, configure components, create DNS records and SSL certificates, and manage users.' +og_description: 'Take control of your email with your own mail server. This guide explains how to install a mail server on your Linode, configure the necessary components and users, and send and receive your first emails.' +keywords: ["mail server", "linode guide", "running a mail server", "Self-host Mail"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['mailserver/'] -modified: 2014-04-13 +modified: 2018-01-23 modified_by: - name: Alex Fornuto + name: Linode published: 2013-06-05 title: Running a Mail Server --- -If you've followed along with the quick start guides up to this point, you've managed to [install Linux](/docs/getting-started), [secure your Linode](/docs/securing-your-server), and [start hosting a website](/docs/hosting-website). Now it's time to set up email. This guide explains how to install a mail server on your Linode and create mail accounts for your own domains. First, we'll help you decide whether to run your own mail server or let a third-party mail service handle it for you. Then we'll show you how a mail server works, present common mail server configurations, and provide basic instructions for getting a mail server up and running. +This guide offers an overview of installing a mail server on your Linode. It covers mail server configuration, creating mail accounts, and basic overviews of tools relevant to hosting an email webserver. -![Running a Mail Server](/docs/assets/mail_server_tg.png "Running a Mail Server") +![Running a Mail Server](/docs/assets/mail_server_tg.png "Running Mail Server") ## Should You Run a Mail Server? -First, you'll need to decide whether or not you want to run your own mail server. If you do, you'll have control over your domain's email, but you'll also have to deal with the hassles associated with setting up and running some pretty complex software. Using a third-party mail service is easier, but you'll sacrifice control and flexibility. In this section, we'll be discussing the benefits and drawbacks to running your own mail server, as well as how to choose an external mail service, if you decide to go that route. +If you do, you'll have control over your domain's email, but you'll also have to deal with the hassles associated with setting up a complex environment of software. Using a third-party mail service is easier, but you'll sacrifice control and flexibility. In this section, we consider the benefits and drawbacks to running your own mail server, as well as how to choose an [external mail service](#external-mail-services), if you decide to go that route. ### Benefits -If you want or need full control of your email, running your own mail server just might be the ideal solution. Doing so allows you to store your own email, access the mail server's logs, and access the raw email files in a user's mailbox. There are several benefits to running a mail server: +If you want or need full control of your email, running your own mail server might be ideal solution. Doing so allows you to store your own email, access the mail server's logs, and access the raw email files in a user's mailbox. -- Full control over both the server and your email -- Pick the applications you want to use, and then tune them for your needs -- Access the raw mail files in users' server mailboxes -- View logs for incoming and outgoing messages -- View logs for connection and authorization attempts from local mail clients for IMAP, POP3, and SMTP -- Enjoy having mail for \$0.00 more than the price of your Linode +Some benefits of running a mail server are: -The greatest benefit: When something goes wrong, you can investigate and fix things yourself instead of calling a third-party mail service provider. So when someone at your company claims that an email got lost, or Outlook suddenly stopped working even though they didn't change *anything*, you'll be able to see what actually happened and make adjustments if necessary. +- Full control over both the server and your email +- Pick the applications you want to use, and tune them for your needs +- View logs for incoming and outgoing messages +- View logs for connection and authorization attempts from local mail clients for IMAP, POP3, and SMTP +- Mail will cost no more than the price of your Linode ### Drawbacks -By now you know that running your own mail server isn't for the faint of heart. Setting up the software is tricky, filtering spam is a pain, and keeping everything running smoothly is challenging. For these reasons and others, we recommend that you carefully consider all of your options before deciding to run a mail server. Here are a couple of the drawbacks: +Running your own mail server isn't for the faint of heart. Setting up the software is tricky, filtering spam can be difficult, and keeping everything running smoothly is challenging. You should carefully consider all of your options before deciding to run a mail server. Here are a couple of the drawbacks: -- Configuration is complicated -- Troubleshooting problems is a pain -- Downtime can result in lost email -- Spam and virus filtering need to be tuned just right to block unwanted emails and allow legitimate ones -- If a spammer discovers an exploit, they could use your Linode to send spam, and your IP address could be black-listed +- Configuration is complicated +- Downtime can result in lost email +- Spam and virus filtering need to be tuned just right to block unwanted emails and allow legitimate ones +- If a spammer discovers an exploit, they could use your Linode to send spam, and your IP address could be black-listed +- No third party support to troubleshoot e-mail issues. -And here's the biggest drawback: You're on the hook for everything related to your email. Maintaining, upgrading, and troubleshooting the mail server is your responsibility. It's a huge commitment! +You're responsible for everything related to your Linode. Maintaining, upgrading, and troubleshooting the mail server is your responsibility. Visit Linode's [Terms of Service](/tos) for more information about acceptable use. ### External Mail Services -If the prospect of managing your own mail server is too daunting, you should consider using a third-party mail service. For a monthly or annual fee, these services provide managed mail servers and take care of all hosting, maintenance, and troubleshooting tasks. You won't have as much control when something goes wrong, but you also won't need to worry about the pitfalls of running a mail server. There are dozens of third-party mail services available, but we recommend checking out these services: +If the prospect of managing your own mail server is too daunting, you should consider using a third-party mail service. For a fee, these services provide managed mail servers and take care of all hosting, maintenance, and troubleshooting tasks. You won't have as much control if something goes wrong, but you also won't need to worry about the pitfalls of running a mail server. + +There are several third-party mail services available: -- [Fastmail](https://www.fastmail.fm) has good uptime and fast IMAP. It's paid and has capped storage. -- [Google Apps](http://www.google.com/intl/en/enterprise/apps/business/) uses the top-notch Gmail interface and has great uptime. It's paid and the IMAP implementation is unusual. We have a [guide](/docs/email/google-mail) on how to use Google Apps with your Linode. -- [Office 365](https://login.microsoftonline.com/) is the successor to Outlook.com and can support custom domains for email, amongst other services. +- [Fastmail](https://www.fastmail.fm) +- [Google Apps](http://www.google.com/intl/en/enterprise/apps/business/) uses the familiar Gmail interface. Check out our guide to [using Google Apps with your Linode](/docs/email/google-mail). +- [Office 365](https://login.microsoftonline.com/) is the successor to Outlook.com and can support custom domains for email, amongst other services. -If you decide to use an outside mail service, you will still need to set up [DNS](/docs/networking/dns/dns-manager) for your mail, using the settings provided by the third-party mail service. +If you decide to use an outside mail service, you will still need to set up [DNS](/docs/networking/dns/dns-manager) for your mail and use the settings provided by the third-party mail service. ## How Mail Servers Work -Every mail server that lets you send and receive email with a local mail client has three separate software components - a Mail Transfer Agent (MTA), a Mail Delivery Agent (MDA), and an IMAP/POP3 server. The MTA relays mail between your Linode and the wider Internet, whether it's delivering an outside email to one of your users, or sending an email from one of your users. Accepted incoming mail gets added to the MTA's queue on the server. The MDA takes mail from the MTA's queue and saves it to individual mailboxes on your Linode. The IMAP/POP3 server manages users and their mailboxes as they check their email over IMAP/POP3 connections. +Every mail server that lets you send and receive email with a local mail client has three separate software components: + +* **MTA**: The *Mail Transfer Agent* relays mail between your Linode and the wider Internet, whether it's delivering an outside email to one of your users, or sending an email from one of your users. Accepted incoming mail gets added to the MTA's queue on the server. + +* **MDA**: The *Mail Delivery Agent* takes mail from the MTA's queue and saves it to individual mailboxes on your Linode. + +* **IMAP/POP3 Server**: Manages users and their mailboxes as they check their email over IMAP/POP3 connections. + +### The Mail Server Process -How does it work? First, an incoming message is directed to your Linode via DNS. Once it passes through the MTA and MDA, it is stored in the user's mailbox on the server. When the message is requested, the IMAP/POP3 server mediates the connection between your Linode and the user's local mail client. Outgoing mail is sent from the user's local mail client, processed by your Linode's MTA, and is then sent to its destination on the Internet. +1. An incoming message is directed to your Linode via DNS. +2. Once it passes through the MTA and MDA, it is stored in the user's mailbox on the server. +3. When the message is requested, the IMAP/POP3 server mediates the connection between your Linode and the user's local mail client. +4. Outgoing mail is sent from the user's local mail client, processed by your Linode's MTA, and is then sent to its destination on the Internet. -[![An incoming message goes through DNS, the MTA, the MDA, the mailbox, the IMAP/POP3 server, and finally to the local mail client. An outgoing message goes from the local mail client, through the MTA, and out to the Internet.](/docs/assets/1300-mail_server.jpg)](/docs/assets/1300-mail_server.jpg) +![E-mail Process Diagram](/docs/assets/1300-mail_server.jpg "E-mail Process Diagram") -There are also add-on components that you may want to install for webmail, spam filtering, virus scanning, and mailing list organizers. To receive mail, users can install local mail clients like Apple Mail, Outlook, and Thunderbird on their personal computers. You'll learn more about each of these components in the following sections. +## How to Choose Mail Server Components -## Choosing Mail Server Components +There are several software packages that can be used as MTAs, MDAs, and IMAP/POP3 servers, and this section will present some of the most popular options. -The next step is choosing the components for your mail server. There are several software packages that can be used as MTAs, MDAs, and IMAP/POP3 servers, and we'll be presenting some of the most popular options in this section. While all of the components presented in this guide are solid choices, we recommend that you use Postfix as your MTA and Dovecot as your MDA and IMAP/POP3 server. These are the packages we'll be using in later examples. +The examples in the [later sections](#build-your-mail-server) of this guide use Postfix as the MTA and Dovecot as the MDA and IMAP/POP3 server. ### Mail Transfer Agents @@ -76,159 +89,175 @@ MTAs are responsible for handling SMTP connections to your Linode from both outs Here are the most popular MTA services available: -- [Courier Mail Server](http://www.courier-mta.org) comes with Courier-IMAP, which is the popular part of the Courier mail server suite, but Courier-MTA also includes mail relaying features. It's a simpler MTA but somewhat limited. -- [Exim](http://www.exim.org) is modern and oriented towards flexibility. It's secure, but not quite as security-oriented as Postfix. It's very customizable, but is one of the most complex MTAs to configure. We have guides for [Exim on Ubuntu 12.04](/docs/email/exim/send-only-mta-ubuntu-12-04-precise-pangolin) and [Exim on Debian 6](/docs/email/exim/send-only-mta-debian-6-squeeze). -- [Postfix](http://www.postfix.org) is part of our [recommended mail server build](/docs/email/postfix/email-with-postfix-dovecot-and-mysql). It's modern, security-oriented, and very flexible, although not quite as flexible as Exim. It is slightly simpler to set up than Exim. -- [Qmail](http://www.qmail.org/top.html) is one of the older modern MTAs and supports Maildir-style directories. It's still very popular, but is no longer supported. -- [Sendmail](http://www.sendmail.com/sm/open_source/) is a legacy MTA that still has a large following and good support. Don't expect the most modern options and security, though. -- [Zimbra](http://www.zimbra.com) is an all-in-one mail service that's much simpler to install than other options, but less customizable. We have guides for [Zimbra on Ubuntu 10.04](/docs/email/zimbra/install-zimbra-ubuntu-10-04-lucid), [Zimbra on Debian 6](/docs/email/zimbra/install-zimbra-debian-6-squeeze), and [Zimbra on CentOS 5](/docs/email/zimbra/install-zimbra-centos-5). +- [Courier Mail Server](http://www.courier-mta.org) comes with Courier-IMAP, which is the popular part of the Courier mail server suite, but Courier-MTA also includes mail relaying features. It's a simpler MTA but somewhat limited. +- [Exim](http://www.exim.org) is modern and oriented towards flexibility. It's secure, but not quite as security-oriented as Postfix. It's very customizable, but is one of the most complex MTAs to configure. +- [Postfix](http://www.postfix.org) is part of Linode's [recommended mail server build](/docs/email/postfix/email-with-postfix-dovecot-and-mysql). It's modern, security-oriented, and very flexible. It is slightly simpler to set up than Exim. +- [Qmail](http://www.qmail.org/top.html) is a modern MTAs and supports [Maildir-style](https://en.wikipedia.org/wiki/Maildir) directories. Qmail has not received an update since 2007, but remains very popular. +- [Sendmail](http://www.sendmail.com/sm/open_source/) is a legacy MTA that has a large following and good support. +- [Zimbra](http://www.zimbra.com) is an all-in-one mail service. Zimbra offers a simple install, but few configurable options. ### Mail Delivery Agents -MDAs move email from the MTA's queue to individual mailboxes on your Linode (for example, your mailbox could be located at `/var/mail/example.com/user/`). MDAs are also known as Local Delivery Agents (LDAs). Different MTAs support different types of mailboxes. The most common types are the older **mbox** mailboxes which store all the messages together in a single file, and **Maildir** mailboxes which store each email in a separate file and support multiple folders. MDAs are often bundled with other mail-related software. +MDAs move email from the MTA's queue to individual mailbox directories within your Linode, for example: your mailbox could be located at `/var/mail/example.com/user/`. MDAs are also known as Local Delivery Agents (LDAs). Different MTAs support different types of mailboxes. The most common types are the older **mbox** mailboxes which store all the messages together in a single file, and **Maildir** mailboxes which store each email in a separate file and support multiple folders. MDAs are often bundled with other mail-related applications. -Here are the most popular MDAs available: +These are some of the most popular MDAs available: -- [Cyrus's MDA](http://www.cyrusimap.org/index.php) is part of the Cyrus IMAP/POP3 server. Cyrus is a modern, security-oriented IMAP/POP3 server designed to run on servers where users do not log in directly. -- [Deliver](http://linux.die.net/man/8/deliver) is a simple Linux mail delivery utility, which is configured in the Imapd configuration files by default. -- [Dovecot's LDA](http://wiki2.dovecot.org/LDA) and [Dovecot's LMTP server](http://wiki2.dovecot.org/LMTP) are part of the Dovecot IMAP/POP3 server. Dovecot is a lightweight, modern, and configurable mail server. -- [maildrop](http://www.courier-mta.org/maildrop/) is Courier's MDA. Courier is an all-in-one mail server. -- [Postfix's MDA](http://www.postfix.org/OVERVIEW.html#delivering) is part of the Postfix MTA software. Postfix is a modern, security-oriented, and flexible MTA. -- [Procmail](http://www.procmail.org) is a legacy MDA. -- [Sendmail's MDA](http://www.sendmail.com/sm/open_source/) is part of the Sendmail MTA software. Sendmail is an older MTA that is still very popular MTA. +- [Cyrus's MDA](http://www.cyrusimap.org/index.php) is part of the Cyrus IMAP/POP3 server. Cyrus is a modern, security-oriented IMAP/POP3 server designed to run on servers where users do not log in directly. +- [Deliver](http://linux.die.net/man/8/deliver) is a simple Linux mail delivery utility that is configured in the Imapd configuration files by default. +- [Dovecot's LDA](http://wiki2.dovecot.org/LDA) and [Dovecot's LMTP server](http://wiki2.dovecot.org/LMTP) are part of the Dovecot IMAP/POP3 server. Dovecot is a lightweight, modern, and configurable mail server. +- [maildrop](http://www.courier-mta.org/maildrop/) is Courier's MDA. Courier is an all-in-one mail server. +- [Postfix's MDA](http://www.postfix.org/OVERVIEW.html#delivering) is part of the Postfix MTA software. Postfix is a modern, security-oriented, flexible MTA. +- [Sendmail's MDA](http://www.sendmail.com/sm/open_source/) is part of the Sendmail MTA software. Sendmail is an older MTA that is still popular. ### IMAP and POP3 Servers -An IMAP or POP3 server handles connections from incoming IMAP or POP3 clients like Microsoft Outlook and Apple Mail. The server manages client access to the mailboxes and raw mail files so that the email is displayed in a user-friendly way. +An IMAP or POP3 server handles connections from incoming IMAP or POP3 clients like Microsoft Outlook and Apple Mail. The server manages client access to the mailboxes and raw mail files so that the email is displayed in a modern way. -Most servers and clients support both IMAP and POP3. POP3 clients connect to the server at specified intervals and download all of a user's messages, without leaving copies on the server by default. POP3 was developed when most people used only one device to access one email account. IMAP is a newer protocol designed for multi-device users. IMAP clients stay continuously connected to the server and IMAP mailboxes mirror the mailboxes on your Linode. IMAP and POP3 both have secure versions (IMAPS and SSL-POP) which use SSL encryption for mail transfer. Always use the secure version whenever possible. +Most servers and clients support both IMAP and POP3. POP3 clients connect to the server at specified intervals and download all of a user's messages without leaving copies on the server by default. POP3 was developed when most people used only one device to access one email account. IMAP is a newer protocol designed for multi-device users. IMAP clients stay continuously connected to the server and IMAP mailboxes mirror the mailboxes on your Linode. IMAP and POP3 both have secure versions (IMAPS and SSL-POP) which use SSL encryption for mail transfer. Always use the secure version whenever possible. Here are the most popular IMAP and POP3 servers available: -- [Citad.l](http://www.citadel.org) is an all-in-one mail service that includes mail, calendars, instant messaging, mailing lists, and other collaboration tools. It's open source and geared towards small and medium-sized organizations. We have guides for [Citadel on Ubuntu 12.04](/docs/email/citadel/ubuntu-12-04-precise-pangolin) and [Citadel on Debian 6](/docs/email/citadel/debian-6-squeeze). -- [Courier](http://www.courier-mta.org) has a very popular IMAP server called [Courier IMAP](http://www.courier-mta.org/imap/). It's an all-in-one mail server software suite, but Courier IMAP can be installed by itself if that's the only part you need. -- [Cyrus](http://www.cyrusimap.org/index.php) is a modern, security-oriented IMAP/POP3 server designed to work on sealed servers where users do not log in directly. -- [DBMail](http://www.dbmail.org) is an open source project that stores mail in databases instead of flat files. -- [Dovecot](http://www.dovecot.org) is a lightweight, modern, and configurable mail server, and is part of our [recommended mail server build](/docs/email/postfix/email-with-postfix-dovecot-and-mysql). -- [Xmail](http://www.xmailserver.org) is a full-featured POP3 server, but does not support IMAP. -- [Zimbra](http://www.zimbra.com) is an all-in-one mail service that's much simpler to install than other options, but less customizable. We have guides for [Zimbra on Ubuntu 10.04](/docs/email/zimbra/install-zimbra-ubuntu-10-04-lucid), [Zimbra on Debian 6](/docs/email/zimbra/install-zimbra-debian-6-squeeze), and [Zimbra CentOS 5](/docs/email/zimbra/install-zimbra-centos-5). +- [Citadel](http://www.citadel.org) is an all-in-one mail service that includes mail, calendars, instant messaging, mailing lists, and other collaboration tools. It's open source and geared towards small and medium-sized organizations. Linode has guides for [Citadel on Ubuntu 12.04](/docs/email/citadel/ubuntu-12-04-precise-pangolin) and [Citadel on Debian 6](/docs/email/citadel/debian-6-squeeze). +- [Courier](http://www.courier-mta.org) has a very popular IMAP server called [Courier IMAP](http://www.courier-mta.org/imap/). It's an all-in-one mail server software suite, but Courier IMAP can be installed by itself if that's the only part you need. +- [Cyrus](http://www.cyrusimap.org/index.php) is a modern, security-oriented IMAP/POP3 server designed to work on sealed servers where users do not log in directly. +- [DBMail](http://www.dbmail.org) is an open source project that stores mail in databases instead of flat files. +- [Dovecot](http://www.dovecot.org) is a lightweight, modern, and configurable mail server, and is part of our [recommended mail server build](/docs/email/postfix/email-with-postfix-dovecot-and-mysql). +- [Xmail](http://www.xmailserver.org) is a full-featured POP3 server, but does not support IMAP. +- [Zimbra](http://www.zimbra.com) is an all-in-one mail service that's much simpler to install than other options, but less customizable. -## Building Your Mail Server - -Now that you understand how a mail server works and you've chosen the primary components, it's time to build your mail server. If you can't decide which software is best for you, you can always use our recommended build with Postfix as your MTA and Dovecot as your MDA and IMAP/POP3 server. It's what we'll use in the examples below. Let's get building! +## Build Your Mail Server ### SSL Certificate -The first step is to obtain and install an SSL certificate. An SSL certificate encrypts connections to your mail server, protecting passwords and email from harmful surveillance. It's possible to run a mail server without this protection, but we don't recommend it. If you follow our recommended build, you will absolutely need an SSL certificate. +An SSL certificate encrypts connections to your mail server. It's possible to run a mail server without an SSL certificate, but it's not recommended. + +Any type of SSL certificate will work, but some certificates have different degrees of trustworthiness for your users. If you want the highest level of trustworthiness, you should [purchase a signed SSL certificate](/docs/security/ssl/obtaining-a-commercial-ssl-certificate) from a reputable company. -Any type of SSL certificate will work, but some certificates have different degrees of trustworthiness for your users. If you want the highest level of trustworthiness, you should [purchase a signed SSL certificate](/docs/security/ssl/obtaining-a-commercial-ssl-certificate) from a reputable company. You can also use a free self-signed certificate if you are comfortable with the warnings it generates. You can [make your own](/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate), or, if you're following our recommended build, you can use the one that comes with Dovecot by default. Decide what type of SSL certificate you need and acquire and install it now. +You can also use a free self-signed certificate if you are comfortable with the warnings it generates. You can make your own [self-signed SSL certificate](/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate), or, if you're following our recommended build, you can use the one that comes with Dovecot by default. ### Software Installation -The second step is installing and configuring the MTA, MDA, and IMAP/POP3 server. You'll also probably want to install a database server like MySQL or PostgreSQL to help you manage your domains, email addresses, user credentials, aliases, etc. Providing step-by-step instructions for every possible mail server build is beyond the scope of this article. For detailed instructions, see our [Postfix, Dovecot, and MySQL](/docs/email/postfix/email-with-postfix-dovecot-and-mysql) guide. Go ahead and install and configure the software you've chosen for your mail server build now. +Install and configure the MTA, MDA, and IMAP/POP3 server. To help manage domains, email addresses, user credentials, aliases, etc., install a database server like MySQL or PostgreSQL. + +For detailed configuration instructions, see our [Postfix, Dovecot, and MySQL](/docs/email/postfix/email-with-postfix-dovecot-and-mysql) guide. -{{< note >}} -We've written a variety of mail server guides, including guides for older software versions and other mail-related services. See the [Email Server Guides](/docs/email) webpage for more information. -{{< /note >}} +For more mail server guides, including guides for older software versions and other mail-related services, visit our [Email Server Guides](/docs/email). ### DNS Records -The third step is to create the DNS records, which help email reach your Linode. The right DNS records also help designate your Linode as a legitimate mail server. In this section, you'll learn how to set the appropriate MX, SPF, and PTR records for your domain and Linode. +DNS records help email reach your Linode. The right DNS records also help designate your Linode as a legitimate mail server. In this section, you'll learn how to set the appropriate MX, SPF, and PTR records for your domain and Linode. + +#### Time to Live (TTL) + +You should lower the Time to Live (TTL) on your existing DNS records to the lowest allowed value at least 24-48 hours before you make any other DNS changes. That way, any changes you make later will propagate quickly. -{{< note >}} -You should lower the time to live (TTL) on your existing DNS records to the lowest allowed value at least 24-48 hours before you make any other DNS changes. That way, any changes you make later will propagate quickly. It's also a good idea to keep your old mail server running for at least 48 hours after you start directing mail to your Linode, just in case the DNS changes take a while to propagate. -{{< /note >}} +It's also a good idea to keep your old mail server running for at least 48 hours after you start directing mail to your Linode, just in case the DNS changes take a while to propagate. #### MX Records -MX records tell the Internet where to send your domain's email. If someone sends an email to `user@example.com`, the outgoing server looks up the DNS settings for `example.com`. When it finds the MX record pointing to your Linode, it sends the message to your Linode. +MX records tell the Internet where to send your domain's email. If someone sends an email to `user@example.com`, the outgoing server looks up the DNS settings for the domain `example.com`. When it finds the MX record pointing to your Linode, it sends the message to your Linode. -You'll need an MX record for each domain and subdomain for which you want to receive mail on your Linode. You can also set multiple MX records with different priorities for the same domain. This creates fallback mail servers for your domain in case the first one on the list is down. Lower numbers have a higher priority. Your MX record has a domain or subdomain, TTL (time to live), type (which is MX), and a priority and target (can be a domain or an IP that resolves to your Linode). +Create an MX record for each domain and subdomain for which you want to receive mail on your Linode. + +You can also set multiple MX records with different priorities for the same domain. This creates fallback mail servers for your domain in case the first one on the list is down. Lower numbers have a higher priority. + +Your MX record has a: + +| **Domain** | **TTL** | **Type** | **Priority** | **Target** | +| ------------ |:--------:|:----:|:----:| ----- | +| example.com | 86400 | MX | 10 | 203.0.113.0 | A typical MX record looks like this: - example.com 86400 MX 10 example.com - example.com 86400 MX 10 12.34.56.78 - mail.example.com 86400 MX 10 12.34.56.78 +{{< output >}} +example.com 86400 MX 10 example.com +example.com 86400 MX 10 203.0.113.0 +mail.example.com 86400 MX 10 203.0.113.0 +{{< /output >}} -If you use Linode's [DNS Manager](/docs/dns-manager), you'll need to point your MX records to a target domain or subdomain that resolves to your Linode. Make sure that domain or subdomain has an A record that points to the correct IP address. +If you use Linode's [DNS Manager](/docs/dns-manager), point your MX records to a target domain or subdomain that resolves to your Linode. Make sure that domain or subdomain has an *A record* that points to the correct IP address. #### SPF Records -SPF records help establish the legitimacy of your mail server and reduce the chances of spoofing, which occurs when someone fakes the headers on an email to make it look like it's coming from your domain, even though the message did not originate from your Linode. Spammers sometimes try to do this to get around spam filters. An SPF record for your domain tells other receiving mail servers which outgoing server(s) are valid sources of email, so they can reject spoofed email from your domain that has originated from unauthorized servers. +SPF records help establish the legitimacy of your mail server and reduce the chances of *spoofing*, which occurs when someone fakes the headers of an email to make it look like it's coming from your domain, even though it didn't. Spammers may try to do this to get around spam filters. -In your SPF record, you should list all the mail servers from which you send mail, and then exclude all the others. Your SPF record will have a domain or subdomain, TTL (time to live, type (which is TXT, or SPF if your name server supports it), and text (which starts with "v=spf1" and contains the SPF record settings). +An SPF record for your domain tells other receiving mail servers which outgoing server(s) are valid sources of email, so they can reject spoofed email from your domain that has originated from unauthorized servers. + +In your SPF record, list all the mail servers from which you send mail, and exclude all the others. Your SPF record will have a domain or subdomain, TTL type which is plain text, or SPF if your name server supports it, and text which starts with `v=spf1` and contains the SPF record settings. If your Linode is the only mail server you use, you should be able to use the example record below. With this SPF record, the receiving server will check the IP addresses of both the sending server and the IP address of `example.com`. If the IPs match, the check passes. If not, the check will "soft fail" (i.e., the message will be marked but will not automatically be rejected for failing the SPF check). - example.com 86400 TXT "v=spf1 a ~all" +{{< output >}} +example.com 86400 TXT "v=spf1 a ~all" +{{< /output >}} -{{< note >}} -Make sure your SPF records are not too strict. If you accidentally exclude a legitimate mail server, its messages could get marked as spam. We strongly recommend visiting [openspf.org](http://www.openspf.org/SPF_Record_Syntax) to learn how SPF records work and how to construct one that works for your setup. Their [examples](http://www.openspf.org/FAQ/Examples) are also helpful. -{{< /note >}} +Make sure your SPF records are not too strict. If you accidentally exclude a legitimate mail server, its messages could get marked as spam. Visit [openspf.org](http://www.openspf.org/SPF_Record_Syntax) to learn how SPF records work and how to construct one that works for your setup. Their [examples](http://www.openspf.org/FAQ/Examples) are also helpful. #### Reverse DNS -If you haven't yet [set reverse DNS](/docs/hosting-website#setting-reverse-dns) for your mail server's domain or subdomain, do so now for the sake of your mail server. The reverse DNS for your mail server *must* match the hostname of your Linode. If your Linode's reverse DNS and hostname do not match, email from your server may get rejected with the warning "Reverse DNS does not match SMTP Banner." If you need to check or set the hostname, see our [Getting Started](/docs/getting-started#setting-the-hostname) article. +[Set reverse DNS](/docs/hosting-website#setting-reverse-dns) for your mail server's domain or subdomain. + +The reverse DNS for your mail server must match the hostname of your Linode. If your Linode's reverse DNS and hostname do not match, email from your server may get rejected with the warning "Reverse DNS does not match SMTP Banner." + +If you need to check or set the hostname, see our [Getting Started](/docs/getting-started#setting-the-hostname) article. -## Next Steps +## Spam and Virus Protection, Mail Clients, and More At this point, you should have a basic mail server up and running. There's a bit more to do, however, if you want to provide your users with the best possible mail experience. This includes adding spam and virus filtering to protect your users, setting up mail clients, providing a webmail solution, and adding any extras you want, such as mailing lists. -### Spam and Virus Protection +### Configure Spam and Virus Protection -Outgoing spam, or spam originating from your Linode, is bad news for everyone involved. It annoys the recipients, and it also gives your server a bad reputation, which makes it harder for you to send legitimate emails. You should take steps to ensure that your Linode is not used as an "open relay" server, which would allow anyone to send messages anywhere using your server. To prevent your Linode from being used as an open relay, make a list of allowed domains and users for your MTA, and make sure it rejects everything else. +Spam that originates from your Linode may be a violation of [Linode's Terms of Service](/tos), and may lead to your server being blacklisted by a [variety of organizations](https://mxtoolbox.com/blacklists.aspx). -There are also a few other scenarios where your server could be sending spam. Your server or an installed application might get hacked, one of your users might have a compromised account, or you may be sending out email messages that are getting marked as spam. (This is more likely to occur in the case of mass mailings.) The best way to stay on top of outgoing spam is to keep an eye on your outgoing mail logs and pay attention to bounceback errors. +Take steps to ensure that your Linode is not used as an *open relay* server, which would allow anyone to send messages anywhere using your server. To prevent your Linode from being used as an open relay, make a list of allowed domains and users for your MTA, and make sure it rejects everything else. -{{< note >}} -If you do get added to a block list, take steps to mitigate the source of the spam. Then you will have to contact the mail provider that blocked you and follow their steps to be allowed to send mail again. -{{< /note >}} +There are also a few other scenarios where your server could be sending spam. If your server or an installed application are hacked, or if a user's account is compromised, or if the emails you send are getting marked as spam by recipients. The best way to stay on top of outgoing spam is to keep an eye on your outgoing mail logs and pay attention to bounceback errors. Incoming spam can also be a problem. Spam filters help you deal with spam sent to your own users. They let you filter incoming messages based on origin, content, etc. Some spam contains viruses, which can cause more serious damage to recipients. Here are some of the most popular spam and virus filter services: -- [Amavis](http://www.amavis.org) is an open source content filter for email that integrates directly with your MTA. It does some checking on its own, and can also be used in conjunction with more robust spam and virus filters. -- [Clam AntiVirus](http://www.clamav.net/lang/en/) is a popular, free, and open-source virus scanner. -- [SpamAssassin](http://spamassassin.apache.org) is a very popular free spam filter. +- [Amavis](http://www.amavis.org) is an open source content filter for email that integrates directly with your MTA. It does some checking on its own, and can also be used in conjunction with more robust spam and virus filters. +- [Clam AntiVirus](http://www.clamav.net/lang/en/) is a popular, free, and open-source virus scanner. +- [SpamAssassin](http://spamassassin.apache.org) is a very popular free spam filter. + +#### What to do if your server has been blacklisted + +If your Linode is added to a [block list](https://mxtoolbox.com/blacklists.aspx), take steps to mitigate the source of the spam. Once mitigated, contact the mail provider that blocked you and follow their steps to be allowed to send mail again. ### Mail Clients -Mail clients are an integral part of the email experience for your users. Microsoft Outlook, Apple Mail, and Mozilla Thunderbird are all examples of mail clients. Most mail clients are compatible with most mail servers – you just need to make a note of the settings you configured on the server side, and make sure you use compatible settings on the client side. Here are some to consider: +Mail clients are an integral part of the email experience for your users. Microsoft Outlook, Apple Mail, and Mozilla Thunderbird are all examples of mail clients. + +Most mail clients are compatible with most mail servers – you just need to make a note of the settings you configured on the server side, and make sure you use compatible settings on the client side. Here are some clients to consider: -- Protocols: Choose IMAP or POP3 for receiving, and SMTP for sending. -- Encryption: Choose SSL and/or TLS encryption, based on your server settings. Ideally, you should make everyone use encryption all the time. -- Authentication: Make sure the format of the credentials entered in the mail client matches the format expected by the server. Sometimes just the "user" part of the email address is the username, and sometimes the entire email address, including the `@` sign, is the username. You can also have usernames that are not related to their corresponding email addresses, but this is not recommended. -- Mailbox format: Make sure your users will be able to read, create, and use all of the folders they need. -- Ports: Not only do your mail client(s) and server have to work on the same ports, but your internet service provider has to allow them as well. +* **Protocols**: Choose IMAP or POP3 for receiving, and SMTP for sending. +* **Encryption**: Choose SSL and/or TLS encryption, based on your server settings. +* **Authentication**: Make sure the format of the credentials entered in the mail client matches the format expected by the server. Sometimes just the "user" part of the email address is the username, and sometimes the entire email address, including the `@` sign, is the username. You can also have usernames that are not related to their corresponding email addresses, but this is not recommended. +* **Mailbox format**: Make sure your users will be able to read, create, and use all of the folders they need. +* **Ports**: Not only do your mail client(s) and server have to work on the same ports, but your internet service provider has to allow them as well. Here are some of the typical mail ports: -- 110 for POP3 -- 995 for SSL-POP (encrypted) -- 143 for IMAP -- 993 for IMAPS (encrypted) -- 25 for SMTP (sometimes blocked by ISPs) -- 587 for SMTP (actually the preferred non-encrypted port for outgoing connections from mail clients) -- 465 for SSMTP (encrypted) +* `110`: POP3 +* `995`: SSL-POP (encrypted) +* `143`: IMAP +* `993`: IMAPS (encrypted) +* `25`: SMTP (sometimes blocked by ISPs) +* `587`: SMTP (actually the preferred non-encrypted port for outgoing connections from mail clients) +* `465`: SSMTP (encrypted) -{{< note >}} -If you're using a firewall, be sure to edit the rules for your mail server's ports. See [these instructions](/docs/securing-your-server#creating-a-firewall) for more information. -{{< /note >}} +If you're using a firewall, be sure to edit the rules for your mail server's ports. See Linode's guide to [configuring a firewall](/docs/security/securing-your-server/#configure-a-firewall) for more information. ### Webmail -Webmail is a type of mail client that can be installed on your server and accessed from a web browser. It allows your users to access their email from your website (example: `http://example.com/mail` anywhere they have access to the Internet. Running a web server is a prerequisite for running a webmail client, so you should follow the [Hosting a Website](/docs/hosting-website) guide if you want to run webmail on your Linode, in addition to installing a mail server. +Webmail is a type of mail client that can be installed on your server and accessed from a web browser. It allows your users to access their email from your website (example: `http://example.com/mail`) anywhere they have access to the internet. Running a web server is a prerequisite for running a webmail client, so follow the [Hosting a Website](/docs/hosting-website) guide if you want to run webmail on your Linode, in addition to installing a mail server. Here are some of the most popular webmail clients: -- [Citadel](http://www.citadel.org) is an all-in-one mail service that includes mail, calendars, instant messaging, mailing lists, and other collaboration tools. It's open source and geared towards small and medium-sized organizations. We have guides for [Citadel on Ubuntu 12.04](/docs/email/citadel/ubuntu-12-04-precise-pangolin) and [Citadel on Debian 6](/docs/email/citadel/debian-6-squeeze/). -- [Horde Webmail](http://www.horde.org/apps/webmail) is an open-source IMAP client paired with some additional functions like account management and calendars. -- [RoundCube](http://roundcube.net) is an IMAP client with modern functionality and a clean layout. -- [SquirrelMail](http://squirrelmail.org) is a solid option, but has an older user interface. Visit our guide to [Install SquirrelMail on Ubuntu 16.04 or Debian 8](/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8) -- [Zimbra](http://www.zimbra.com) is an all-in-one mail service that's much simpler to install than other options, but less customizable. We have guides for [Zimbra on Ubuntu 10.04](/docs/email/zimbra/install-zimbra-ubuntu-10-04-lucid), [Zimbra on Debian 6](/docs/email/zimbra/install-zimbra-debian-6-squeeze), and [Zimbra CentOS 5](/docs/email/zimbra/install-zimbra-centos-5). - -### Extras - -There are many other add-ons that can round out the functionality of your mail server. For example, you may want to incorporate mailing list software, user administration so users can change their own passwords, or calendar coordination, just to name a few. +* [Mail-in-a-box](https://mailinabox.email/) is an all-in-one mail option that offers a hassle-free approach to setting up a mail server and webmail component. +* [Citadel](http://www.citadel.org) is an all-in-one mail service that includes mail, calendars, instant messaging, mailing lists, and other collaboration tools. It's open source and geared towards small and medium-sized organizations. +* [Horde Webmail](http://www.horde.org/apps/webmail) is an open-source IMAP client paired with some additional functions like account management and calendars. +* [RoundCube](http://roundcube.net) is an IMAP client with modern functionality and a clean layout. +* [SquirrelMail](http://squirrelmail.org) is a solid option, but has an older user interface. +* [Zimbra](http://www.zimbra.com) is an all-in-one mail service that's much simpler to install than other options, but less customizable. diff --git a/docs/email/zimbra/zimbra-on-ubuntu-14-04.md b/docs/email/zimbra/zimbra-on-ubuntu-14-04.md index 14bb4157c77..6f6184115e4 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. @@ -227,7 +228,7 @@ Your server was configured when you installed, and most of those settings will w 4. The **Protocol checks** can stop many spam messages before they enter your system. You may turn them all on, but at least _Sender address must be fully qualified_ should be checked. -5. **DNS checks** use realtime blacklists to reject mail coming from known spamming servers. zen.spamhuas.org is a good suggestion to start with. Enter the domain name into the **List of Client RBLs**. +5. **DNS checks** use realtime blacklists to reject mail coming from known spamming servers. `zen.spamhuas.org` is a good suggestion to start with. Enter the domain name into the **List of Client RBLs**. 6. Click the **AS/AV** page. Here you determine how "spammy" a message has to be to get tagged or rejected. Zimbra uses SpamAssassin to score every message. A score of zero or less than zero means the message is likely to be worth delivering. A score above zero means there are some indicators that this could be an unwanted email. The **Kill percent** is the score above which Zimbra will not deliver the message at all. The **Tag percent** is the score above which Zimbra will let the message through, but deliver it to the Junk folder. diff --git a/docs/game-servers/garrys-mod-server-on-centos-7.md b/docs/game-servers/garrys-mod-server-on-centos-7.md index 7814bb5f975..4a332c489d6 100644 --- a/docs/game-servers/garrys-mod-server-on-centos-7.md +++ b/docs/game-servers/garrys-mod-server-on-centos-7.md @@ -43,7 +43,7 @@ From the SteamCMD guide, two additional steps are needed specifically for Gmod. sudo firewall-cmd --zone=public --add-port=27000 27030/udp --permanent -2. Install an additonal 32-bit package: +2. Install an additional 32-bit package: sudo yum install ncurses-libs.i686 @@ -123,7 +123,7 @@ This will automatically restart Garry's Mod when your server reboots. ### Server Config File -The default `server.cfg` file is blank, and any configuration options you want to specify for the server must be added. This are optional, but below is a sane starting point. +The default `server.cfg` file is blank, and any configuration options you want to specify for the server must be added. This is optional, but below is a sane starting point. {{< file "~/Steam/gmod/garrysmod/cfg/server.cfg" >}} hostname "server_hostname" @@ -144,7 +144,7 @@ writeip 2. Note the collection ID. It is located at the end of the url, denoted by the 'X's here: - http://steamcommunity.com/sharedfiles/filedetails/?id=XXXXXXXXX + http://steamcommunity.com/sharedfiles/filedetails/?id=XXXXXXXXX 3. Acquire a Steam API key from the [Steam API Keys](http://steamcommunity.com/dev/apikey) page. Note the key. diff --git a/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian.md b/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian.md index b6ff2ddf805..e855099a40d 100644 --- a/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian.md +++ b/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian.md @@ -56,7 +56,7 @@ Minecraft version 1.12 is only compatible with OpenJDK 8. If you are using OpenJ Assign a secure password, and configure any additional [SSH hardening](/docs/security/use-public-key-authentication-with-ssh) options at this time. {{< note >}} -If you have a firewall configured according to our [Securing Your Server](/docs/security/securing-your-server) guide, add the following line to your `iptables.firewall.rules` file to add an exception for port 25565: +If you have a firewall configured according to our [Securing Your Server](/docs/security/securing-your-server/) guide, add the following line to your `iptables.firewall.rules` file to add an exception for port 25565: -A INPUT -p tcp --dport 25565 -j ACCEPT {{< /note >}} @@ -115,7 +115,7 @@ eula=true -3. To ensure that the Minecraft server runs independent of an SSH connection, execute `run.sh` from within a [GNU Screen](/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions) session: +3. To ensure that the Minecraft server runs independent of an SSH connection, execute `run.sh` from within a [GNU Screen](/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/) session: screen /home/minecraft/run.sh diff --git a/docs/game-servers/install-black-mesa-on-debian-or-ubuntu.md b/docs/game-servers/install-black-mesa-on-debian-or-ubuntu.md index aab0b11215a..708e91ba3fe 100644 --- a/docs/game-servers/install-black-mesa-on-debian-or-ubuntu.md +++ b/docs/game-servers/install-black-mesa-on-debian-or-ubuntu.md @@ -95,7 +95,7 @@ At the time of writing this guide, Black Mesa has yet to share with customers an {{< /note >}} ### Server.cfg -The **server.cfg** file contains the settings of your server. It is not needed because you can start the server every time by specifying desidered values using parameters. +The **server.cfg** file contains the settings of your server. It is not needed because you can start the server every time by specifying desired values using parameters. {{< file-excerpt "/home/steam/Steam/steamapps/common/Black Mesa Dedicated Server/bms/cfg/server.cfg" java >}} // Black Mesa server.cfg file @@ -248,7 +248,7 @@ You can read the entire list of parameters on the [Valve Wiki](https://developer wget http://www.metamodsource.net/mmsdrop/1.10/mmsource-1.10.7-git951-linux.tar.gz {{< note >}} -This URL costantly changes as MetaMod is updated. Please check the downloads [page](http://www.metamodsource.net/snapshots) for the current URL. +This URL constantly changes as MetaMod is updated. Please check the downloads [page](http://www.metamodsource.net/snapshots) for the current URL. {{< /note >}} 3. Extract the downloaded archive: diff --git a/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu.md b/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu.md index 6c26eab8450..791ca2d34db 100644 --- a/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu.md +++ b/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu.md @@ -41,11 +41,10 @@ From the SteamCMD guide, two additional steps are needed specifically for DST. sudo dpkg-reconfigure iptables-persistent -3. Install some additonal 32-bit packages: +3. Install some additional 32-bit packages: sudo apt-get install libcurl4-gnutls-dev:i386 - ## Install Don’t Starve Together 1. Be sure you are in the directory `~/Steam`, then access the `Steam>` prompt. diff --git a/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04.md b/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04.md index a8c61d286c3..6dd27e623f1 100644 --- a/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04.md +++ b/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04.md @@ -79,7 +79,7 @@ CS:GO requires a server token unless you want to limit players to only clients c ## Configure the Server -1. Create a file called `server.cfg` using your prefered text editor. Choose a hostname and a unique RCON password that you don't use elsewhere. +1. Create a file called `server.cfg` using your preferred text editor. Choose a hostname and a unique RCON password that you don't use elsewhere. {{< file "~/Steam/csgo-ds/csgo/cfg/server.cfg" aconf >}} hostname "server_hostname" @@ -163,4 +163,4 @@ These settings are changed in the launch command. ### RCON -When logged into the server, you can open the RCON console with the backtic button (`), or your mapped key. To log in type `rcon_password` followed by your password. For more information regarding RCON, click [here](/docs/game-servers/team-fortress2-on-debian-and-ubuntu/#rcon). +When logged into the server, you can open the RCON console with the backtick button (`), or your mapped key. To log in type `rcon_password` followed by your password. For more information regarding RCON, click [here](/docs/game-servers/team-fortress2-on-debian-and-ubuntu/#rcon). diff --git a/docs/game-servers/left-4-dead-2-multiplayer-server-installation.md b/docs/game-servers/left-4-dead-2-multiplayer-server-installation.md index f7a134ba2a2..a3a5b417746 100644 --- a/docs/game-servers/left-4-dead-2-multiplayer-server-installation.md +++ b/docs/game-servers/left-4-dead-2-multiplayer-server-installation.md @@ -142,7 +142,7 @@ This guide requires additional libraries which are not included in our standard cd ~/Steam/L4D2-server/left4dead2/cfg - Choose one of the following example files: + Choose one of the following example files: wget https://www.gottnt.com/l4d2/basic-server.cfg wget https://www.gottnt.com/l4d2/detailed-server.cfg @@ -168,7 +168,7 @@ The `+port 27020` parameter is not required but is recommended so that your serv {{< /note >}} You can change the map to whichever one you prefer. - This script, when run, will execute the L4D2 server in a [Screen](/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions) session. + This script, when run, will execute the L4D2 server in a [Screen](/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions) session. 5. Make the script executable: @@ -202,7 +202,7 @@ You can connect to the server in any one of three easy methods: 3. A third method is to install the following add-on: [Link](https://steamcommunity.com/sharedfiles/filedetails/?id=121088946) and then launch the game. Next, click on the new `Server Browser` option on the main menu and find your server in the long list of servers. This method only works if you have set the `hostname`, `sv_search_key`, and `sv_tags` options in the config file. {{< note >}} -Your L4D2 server will only show up in the `Custom` list of servers. Therefore, we recomend that you add it to your favorites to avoid having to look for it again. +Your L4D2 server will only show up in the `Custom` list of servers. Therefore, we recommend that you add it to your favorites to avoid having to look for it again. {{< /note >}} Finally, invite friends to the game using the Steam Overlay (`SHIFT + TAB`). Let the playing begin! diff --git a/docs/game-servers/minecraft-with-bungee-cord.md b/docs/game-servers/minecraft-with-bungee-cord.md index b1a8cf0e634..db32cb588e6 100644 --- a/docs/game-servers/minecraft-with-bungee-cord.md +++ b/docs/game-servers/minecraft-with-bungee-cord.md @@ -52,18 +52,18 @@ On the Linode that is going to host BungeeCord: 4. Create another user for the BungeeCord proxy, so that it doesn't have the same privileges as your user. You'll need to keep this password for future reference. - sudo adduser bungeecord + sudo adduser bungeecord ### Configuring the Firewall on the BungeeCord Node If you're using iptables or ufw to act as a firewall, you'll need to make a rule on the Linode running BungeeCord, to permit TCP on port 25565. This can be done by running: - sudo iptables -A INPUT -p tcp --dport 25565 -j ACCEPT + sudo iptables -A INPUT -p tcp --dport 25565 -j ACCEPT ### Configuring the Firewall on the Spigot Server Linodes -For BungeeCord, the Spigot servers need to be in offline mode, as the BungeeCord proxy handles the authentication. This can make the servers vulnerable to people connecting directly, as they can connect with any username, potentially allowing for connection as a user with adminsitrative permissions. To prevent this, you can set up iptables to limit connections to only the BungeeCord server. +For BungeeCord, the Spigot servers need to be in offline mode, as the BungeeCord proxy handles the authentication. This can make the servers vulnerable to people connecting directly, as they can connect with any username, potentially allowing for connection as a user with administrative permissions. To prevent this, you can set up iptables to limit connections to only the BungeeCord server. {{< note >}} This section assumes that you've only got a Spigot server running on each Linode. If you have other services, you'll need to modify the rules to allow them to continue working. @@ -100,7 +100,7 @@ If you've configured your `iptables` firewall by following our [Securing Your Se Log into the BungeeCord Linode as the `bungeecord` user created earlier, and download BungeeCord: - wget -O BungeeCord.jar http://ci.md-5.net/job/BungeeCord/lastSuccessfulBuild/artifact/bootstrap/target/BungeeCord.jar + wget -O BungeeCord.jar http://ci.md-5.net/job/BungeeCord/lastSuccessfulBuild/artifact/bootstrap/target/BungeeCord.jar {{< note >}} This downloads the latest version of BungeeCord. You can find older versions for older Minecraft server versions, [here](http://ci.md-5.net/job/BungeeCord/). @@ -110,8 +110,7 @@ This downloads the latest version of BungeeCord. You can find older versions for 1. Start BungeeCord up, allowing it to generate the configuration files: - java -jar BungeeCord.jar - + java -jar BungeeCord.jar After the prompt `[INFO] Listening on /0.0.0.0:25577` is displayed in the console, type `end` and press Enter. @@ -119,7 +118,7 @@ This downloads the latest version of BungeeCord. You can find older versions for 3. Edit the following block of the configuration, in order to add our existing Spigot servers: - {{< file-excerpt "config.yml" yaml >}} + {{< file-excerpt "config.yml" yaml >}} servers: lobby: address: localhost:25565 @@ -137,7 +136,7 @@ servers: address: 203.0.113.112:25565 restricted: false motd: 'Just another BungeeCord - Forced Host' - games: + games: address: 203.0.113.198:25565 restricted: false motd: 'Just another BungeeCord - Forced Host' @@ -197,7 +196,7 @@ Connect to your BungeeCord address in Minecraft, and run `/server name` where `n To see who is online on any of the BungeeCord servers that you've linked, you can run: - /glist + /glist ## Troubleshooting @@ -213,7 +212,7 @@ If there is an issue connecting, then it's important to check that the login ser If the server shows the MOTD and a ping in the server list, as per the image above, it's likely that the problem lies between BungeeCord and your Spigot servers. To check, you can log into your BungeeCord server, and you'll most likely see a line similar to the following in the logs, where the IP `198.51.100.0` is replaced by your IP. This shows that your client is successfully pinging the BungeeCord server: - 00:20:34 [INFO] [/198.51.100.0:50677] <-> InitialHandler has connected + 00:20:34 [INFO] [/198.51.100.0:50677] <-> InitialHandler has connected If the logs look similar to above, the following error is likely occurring: @@ -239,6 +238,6 @@ If this happens, you should check that BungeeCord is actually running, and that Assuming that the issue is not solved, the issue is likely to be the firewall. You can flush your firewalls with: - iptables -F + iptables -F You should try again to reconnect. If you can connect now, then you'll need to reconfigure the firewall as detailed above. diff --git a/docs/game-servers/minecraft-with-mcmyadmin-on-debian.md b/docs/game-servers/minecraft-with-mcmyadmin-on-debian.md index d26c3afd8e5..38c9356c061 100644 --- a/docs/game-servers/minecraft-with-mcmyadmin-on-debian.md +++ b/docs/game-servers/minecraft-with-mcmyadmin-on-debian.md @@ -22,7 +22,7 @@ aliases: ['applications/game-servers/minecraft-with-mcmyadmin-on-debian/'] 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) guide to create a standard user account, harden SSH access and remove unnecessary network services. Do **not** follow the *Configure a Firewall* section yet--this guide includes firewall rules specifcally for a Minecraft server. +2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server) guide to create a standard user account, harden SSH access and remove unnecessary network services. Do **not** follow the *Configure a Firewall* section yet--this guide includes firewall rules specifically for a Minecraft server. 3. Update your system. @@ -99,13 +99,13 @@ COMMIT 1. Install the Java Runtime Environment, OpenJDK: - sudo apt-get install openjdk-7-jre + sudo apt-get install openjdk-7-jre -2. [Mono](http://www.mono-project.com/). CubeCoders Limited, the company behind McMyAdmin, packages its own minimal installation of Mono with some necessary source and configuration files. This must be used instead of the generic Mono packages from Debian's repositories. +2. [Mono](http://www.mono-project.com/) is an open source implementation of the .NET framework. CubeCoders Limited, the company behind McMyAdmin, packages its own minimal installation of Mono with some necessary source and configuration files. This must be used instead of the generic Mono packages from Debian's repositories. - cd /usr/local - sudo wget http://mcmyadmin.com/Downloads/etc.zip - sudo unzip etc.zip; sudo rm etc.zip + cd /usr/local + sudo wget http://mcmyadmin.com/Downloads/etc.zip + sudo unzip etc.zip; sudo rm etc.zip ## Install and Start McMyAdmin @@ -113,48 +113,48 @@ This section should be completed as your standard user, **not** as root. McMyAdm 1. Create the installation directory and change location to it. - mkdir ~/mcmyadmin && cd ~/mcmyadmin + mkdir ~/mcmyadmin && cd ~/mcmyadmin 2. Download the McMyAdmin installer. You will want to double check its [Download](https://www.mcmyadmin.com/#/download) page to be sure you're grabbing the latest version. - wget http://mcmyadmin.com/Downloads/MCMA2_glibc26_2.zip + wget http://mcmyadmin.com/Downloads/MCMA2_glibc26_2.zip 3. Extract the archive and delete the original zip file. - unzip MCMA2_glibc26_2.zip; rm MCMA2_glibc26_2.zip + unzip MCMA2_glibc26_2.zip; rm MCMA2_glibc26_2.zip 4. Start the initial configuration of McMyAdmin. Replace `PASSWORD` with a strong password which you want for admin access to McMyAdmin's web interface. - ./MCMA2_Linux_x86_64 -setpass PASSWORD -configonly + ./MCMA2_Linux_x86_64 -setpass PASSWORD -configonly - This will return the output: + This will return the output: - The updater will download and install McMyAdmin to the current directory: - /home/your_user/mcmyadmin). + The updater will download and install McMyAdmin to the current directory: + /home/your_user/mcmyadmin). - Continue? [y/n] : + Continue? [y/n] : - Answer `y`. The installer will run and return you to the command prompt. If everything is as it should be, the only warning you'll see will be for a missing configuration file. As the output says, that would be normal since McMyAdmin was just started for the first time. + Answer `y`. The installer will run and return you to the command prompt. If everything is as it should be, the only warning you'll see will be for a missing configuration file. As the output says, that would be normal since McMyAdmin was just started for the first time. 5. Install screen, if it is not already installed. - sudo apt-get install screen + sudo apt-get install screen 6. Start a screen session for the McMyAdmin client. - screen -S mcma + screen -S mcma 7. Change into the McMyAdmin installation directory and start the program. - cd ~/mcmyadmin; ./MCMA2_Linux_x86_64 + cd ~/mcmyadmin; ./MCMA2_Linux_x86_64 - If successful, the last three lines of the output will be: + If successful, the last three lines of the output will be: - Notice : McMyAdmin has started and is ready for use. - Notice : This is the first time McMyAdmin has been started. - Notice : You must complete the first-start wizard via the web interface. + Notice : McMyAdmin has started and is ready for use. + Notice : This is the first time McMyAdmin has been started. + Notice : You must complete the first-start wizard via the web interface. - {{< note >}} + {{< note >}} To exit McMyAdmin and return to the command line, enter `/quit`. {{< /note >}} @@ -164,16 +164,16 @@ To exit McMyAdmin and return to the command line, enter `/quit`. 2. Log in with the username `admin` and the password that you provided in the installation step. - ![McMyAdmin Login Page](/docs/assets/mcmyadmin-login-page.png) + ![McMyAdmin Login Page](/docs/assets/mcmyadmin-login-page.png) 3. Once the initial configuration steps are completed, select your settings and then switch to the status page. - ![McMyAdmin Configuration Page](/docs/assets/mcmyadmin-config-page.png) + ![McMyAdmin Configuration Page](/docs/assets/mcmyadmin-config-page.png) 4. Select *Start Server* and accept the Minecraft Server EULA. - ![McMyAdmin Status Page](/docs/assets/mymyadmin-status-page.png) + ![McMyAdmin Status Page](/docs/assets/mymyadmin-status-page.png) - ![McMyAdmin Server Started](/docs/assets/mcmyadmin-server-running.png) + ![McMyAdmin Server Started](/docs/assets/mcmyadmin-server-running.png) Congratulations, you now have McMyAdmin running on your Minecraft server! 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/game-servers/team-fortress2-on-debian-and-ubuntu.md b/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md index 9881d7ee833..2960dc3592c 100644 --- a/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md +++ b/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md @@ -37,7 +37,7 @@ From the SteamCMD guide, two additional steps are needed specifically for TF2. sudo dpkg-reconfigure iptables-persistent -3. Install an additonal 32-bit package: +3. Install an additional 32-bit package: sudo apt-get install lib32tinfo5 @@ -49,7 +49,7 @@ From the SteamCMD guide, two additional steps are needed specifically for TF2. 2. From the SteamCMD prompt, login anonymously: - login anonymous + login anonymous Or log in with your Steam username: @@ -57,8 +57,8 @@ From the SteamCMD guide, two additional steps are needed specifically for TF2. 3. Install TF2 to the `Steam` user's home directory: - force_install_dir ./tf2 - app_update 232250 + force_install_dir ./tf2 + app_update 232250 This can take some time. If the download looks as if it has frozen, be patient. Once the download is complete, you should see this output: @@ -68,9 +68,9 @@ From the SteamCMD guide, two additional steps are needed specifically for TF2. 4. Quit SteamCMD: - quit + quit - {{< note >}} + {{< note >}} To update TF2, run the above 4 commands again. {{< /note >}} @@ -84,11 +84,11 @@ In order to create a custom list of maps for your server, create `mapcycle.txt` 1. Navigate to `Steam/tf2/tf/cfg`: - cd ~/Steam/tf2/tf/cfg + cd ~/Steam/tf2/tf/cfg 2. Copy `mapcycle_default.txt`: - cp mapcycle_default.txt mapcycle.txt + cp mapcycle_default.txt mapcycle.txt 3. Open the file and add or remove maps as desired. @@ -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*. @@ -124,7 +124,7 @@ screen -S "Team Fortress 2 Server" ./srcds_run -game tf +map ctf_2fort.bsp When run, the script will change directories to `~/Steam/tf2` and execute TF2 in a [Screen](/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions) session. - Optionally, replace `cft_2fort.bsp` with the name of your chosen map’s file, or replace `+map ctf_2fort.bsp` with `+randommap` for a randomized map selection. + Optionally, replace `cft_2fort.bsp` with the name of your chosen map’s file, or replace `+map ctf_2fort.bsp` with `+randommap` for a randomized map selection. 2. Make the script executable: @@ -157,13 +157,13 @@ RCON allows you to make changes to your server from inside of the game. 1. To start using RCON, go to the **Options** setting in the game, and then select **Advanced...** - [![Enable the developer console.](/docs/assets/team-fortress-rcon-small.png)](/docs/assets/team-fortress-rcon.png) + [![Enable the developer console.](/docs/assets/team-fortress-rcon-small.png)](/docs/assets/team-fortress-rcon.png) 2. From here, check **Enable developer console** and apply these settings. 3. To make changes in-game, it is recommended that you switch to spectator mode, and then press the backtick button (`) to access the developer's console. - [![Press `~` to access the console](/docs/assets/team-fortress-rcon-console-small.png)](/docs/assets/team-fortress-rcon-console.png) + [![Press `~` to access the console](/docs/assets/team-fortress-rcon-console-small.png)](/docs/assets/team-fortress-rcon-console.png) 4. Log in to RCON by typing in `rcon_password` followed by your password. diff --git a/docs/getting-started.md b/docs/getting-started.md index b291182ed3e..3eab9f8c2de 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 @@ -197,7 +197,7 @@ Ubuntu may prompt you when the Grub package is updated. If prompted, select `kee emaint sync -a -After running a sync, it may end with a message that you should upgrade Portage using a `--oneshot` emerge comand. If so, run the Portage update. Then update the rest of the system: +After running a sync, it may end with a message that you should upgrade Portage using a `--oneshot` emerge command. If so, run the Portage update. Then update the rest of the system: emerge --uDN @world diff --git a/docs/github-guide.md b/docs/github-guide.md index 55b3b8e0e35..9986c7d99af 100644 --- a/docs/github-guide.md +++ b/docs/github-guide.md @@ -30,23 +30,23 @@ If you are following these instructions on a Windows system, all commands will n 1. If you have not done so already, generate an SSH key on your local system: - ssh-keygen + ssh-keygen 2. View the contents of the newly-created public key file: - cat ~/.ssh/id_rsa.pub + cat ~/.ssh/id_rsa.pub 3. In a browser window, select your user account icon in the upper right-hand corner of the screen, then click **Settings**. Your user account icon may look different than the one below: - [![GitHub Settings](/docs/assets/github-settings.png)](/docs/assets/github-settings.png) + [![GitHub Settings](/docs/assets/github-settings.png)](/docs/assets/github-settings.png) 4. Select the **SSH keys** option from the **Personal settings** menu, then click the **Add SSH key** button: - [![SSH key settings](/docs/assets/github-ssh-key.png)](/docs/assets/github-ssh-key.png) + [![SSH key settings](/docs/assets/github-ssh-key.png)](/docs/assets/github-ssh-key.png) 5. Copy the contents of your public key file from your terminal window, and paste them into the **Key** text box. Add a descriptive title for your key in the **Title** text box: - [![Add Key](/docs/assets/github-load-key.png)](/docs/assets/github-load-key.png) + [![Add Key](/docs/assets/github-load-key.png)](/docs/assets/github-load-key.png) ### Setting Up Your Repository @@ -59,20 +59,20 @@ In order to edit or create documents for Linode Guides and Tutorials, you will n 3. Once the fork process has completed, visit the **docs** repository under your repository list on the GitHub homepage: - [![Your repository on GitHub](/docs/assets/github-your-repository.png)](/docs/assets/github-your-repository.png) + [![Your repository on GitHub](/docs/assets/github-your-repository.png)](/docs/assets/github-your-repository.png) 4. Clone your forked branch to your local machine by copying the clone URL, and appending it to the following command. We recommend cloning via SSH for this particular step. This command will create a local copy of your cloned repository that you can work with directly in the directory where the command is run: - [![GitHub Clone URL](/docs/assets/github-clone-url.png)](/docs/assets/github-clone-url.png) + [![GitHub Clone URL](/docs/assets/github-clone-url.png)](/docs/assets/github-clone-url.png) - git clone + git clone - You will need to accept the host identification key on your first connection. + You will need to accept the host identification key on your first connection. 5. Move to the cloned directory and configure the Linode Docs repository as your upstream repository: - cd docs - git remote add upstream https://github.com/linode/docs + cd docs + git remote add upstream https://github.com/linode/docs ### Creating Your Branch @@ -80,23 +80,23 @@ Once you've cloned a local copy of your repository, you will need to make a bran 1. Verify that you are in the master branch: - git status + git status - You should receive output similar to that show below: + You should receive output similar to that show below: - On branch master - Your branch is up-to-date with 'origin/master'. + On branch master + Your branch is up-to-date with 'origin/master'. - nothing to commit, working directory clean + nothing to commit, working directory clean 2. Check out a new branch with a descriptive title matching the guide that you are editing or creating: - git checkout -b guide-title + git checkout -b guide-title -3. Rerun the `git status` command to confirm that you have been moved to the new branch. You should receive output maching the following: +3. Rerun the `git status` command to confirm that you have been moved to the new branch. You should receive output matching the following: - On branch guide-title - nothing to commit, working directory clean + On branch guide-title + nothing to commit, working directory clean 4. Using your preferred text editor, you should now be able to edit and create documents within your new branch: @@ -107,29 +107,29 @@ The folder structure within the repository's `docs` folder matches the structure 5. Once you have completed composing or making edits to a guide, you can use the `git status` command to view the status of your changes. You should receive output resembling the following: Untracked files: - (use "git add ..." to include in what will be committed) + (use "git add ..." to include in what will be committed) - guide-title.md + guide-title.md - nothing added to commit but untracked files present (use "git add" to track) + nothing added to commit but untracked files present (use "git add" to track) 6. Add your guide to the list of files to be committed with the 'git add' command: - git add guide-title.md + git add guide-title.md 7. Commit your file to officially make it part of your changes. Utilize the `-m` flag with the `git commit` command to add a commit message. Commit messages will need to be encased in quotation marks, as shown below: - git commit -m "First draft of guide" + git commit -m "First draft of guide" - You should receive output resembling the following: + You should receive output resembling the following: - [guide-title 40b1932] First draft of guide - 1 file changed, 1 insertion(+) - Create mode 100644 docs/guide-title.md + [guide-title 40b1932] First draft of guide + 1 file changed, 1 insertion(+) + Create mode 100644 docs/guide-title.md 8. Push your guide to GitHub. You will need to replace `guide-title` below with the name of your branch: - git push origin guide-title + git push origin guide-title ### Submitting Your First Pull Request @@ -137,19 +137,19 @@ Now that you've completed the composition of your guide, it's time to make your 1. Within the GitHub web interface, navigate to your fork of the **linode/docs** repository: - [![GitHub - Your Repository](/docs/assets/github-your-repository.png)](/docs/assets/github-your-repository.png) + [![GitHub - Your Repository](/docs/assets/github-your-repository.png)](/docs/assets/github-your-repository.png) 2. Select the branch containing your changes: - [![GitHub - Switch Branches](/docs/assets/github-switch-branches.png)](/docs/assets/github-switch-branches.png) + [![GitHub - Switch Branches](/docs/assets/github-switch-branches.png)](/docs/assets/github-switch-branches.png) 3. Select the **Pull Request** option to generate your first PR: - [![GitHub - Pull Request](/docs/assets/github-pull-request.png)](/docs/assets/github-pull-request.png) + [![GitHub - Pull Request](/docs/assets/github-pull-request.png)](/docs/assets/github-pull-request.png) 4. Ensure that your pull request is being submitted against the **Base fork: linode/docs**, and the **Base: master**. Enter the title of your guide, along with a brief description, and click the **Create Pull Request** button: - [![GitHub - Pull Request Submission](/docs/assets/github-pull-request2.png)](/docs/assets/github-pull-request2.png) + [![GitHub - Pull Request Submission](/docs/assets/github-pull-request2.png)](/docs/assets/github-pull-request2.png) Congratulations! Your guide has been submitted as a pull request against the Linode Docs repository! @@ -169,30 +169,30 @@ If you are working on multiple guide submissions or changes, you will need to ut 1. To avoid merge conflicts, switch to your master branch and pull in the latest changes from the Linode Docs master branch: - git checkout master - git fetch upstream + git checkout master + git fetch upstream 2. Create and switch to a new branch to store your new changes: - git checkout -b guide-title-2 + git checkout -b guide-title-2 - You should receive output resembling the following: + You should receive output resembling the following: - Switched to a new branch 'guide-title-2' + Switched to a new branch 'guide-title-2' 3. To confirm what branch you are currently using, run `git status`. The output should resemble the following: - On branch guide-title-2 - nothing to commit, working directory clean + On branch guide-title-2 + nothing to commit, working directory clean 4. To list all of your available branches, utilize the `git branch` command. This will list all of your branches, and highlight your active branch: - git branch + git branch 5. Once you have completed working with a branch, you can remove your local copy of that branch by switching to a different branch, such as master, and using the `-d` flag to remove the unused branch: - git checkout master - git branch -d guide-title-2 + git checkout master + git branch -d guide-title-2 {{< note >}} Git will warn you if you attempt to delete a branch with unmerged changes. If you wish to remove a branch with unmerged changes, you can force removal by substituting the `-D` flag. diff --git a/docs/linode-writers-formatting-guide.md b/docs/linode-writers-formatting-guide.md index 9a91dc8730f..cab5c1e8b2c 100644 --- a/docs/linode-writers-formatting-guide.md +++ b/docs/linode-writers-formatting-guide.md @@ -85,7 +85,7 @@ The *Before You Begin* section is an area for basic prerequisites a reader shoul If using example variables which should be changed throughout the guide, declare them in the Before You Begin section. -Variables that the reader will need to change for their system or preference should be formatted using backtics. This includes: +Variables that the reader will need to change for their system or preference should be formatted using backticks. This includes: * [Example IPs](#example-ip-addresses) * User names @@ -184,7 +184,7 @@ For example: > > yum update -Inline commands should be denoted by backtics. +Inline commands should be denoted by backticks. | Formatting | Example | |:--------------|:------------| diff --git a/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md b/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md index 9cc38e5976a..8c2e599a13b 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 @@ -244,7 +244,7 @@ Some networking issues are novel and require escalation to the operators of the ### Destination Host Networking Improperly Configured -In the next example, it appears that there is 100% loss to a the destination host because of an incorrectly configured router. At first glance it appears that the packets are not reaching the host but this is not the case. +In the next example, it appears that there is 100% loss to the destination host because of an incorrectly configured router. At first glance it appears that the packets are not reaching the host but this is not the case. root@localhost:~# mtr --report www.google.com HOST: localhost Loss% Snt Last Avg Best Wrst StDev diff --git a/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8.md b/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8.md index 4ef5e7bf964..730fcd842bd 100644 --- a/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8.md +++ b/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8.md @@ -40,7 +40,7 @@ In this tutorial you will configure and install ntopng on your Linode. The tutor {{< note >}} -The steps in this guide require root privileges. Be sure to run the steps below as `root` or with `sudo`. If two commands are presented in the same instance (seperated by `&&`), you must prefix each command with `sudo` (ex. `sudo [command] && sudo [command]`). For more information on privileges, see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. +The steps in this guide require root privileges. Be sure to run the steps below as `root` or with `sudo`. If two commands are presented in the same instance (separated by `&&`), you must prefix each command with `sudo` (ex. `sudo [command] && sudo [command]`). For more information on privileges, see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. {{< /note >}} ### Add the ntopng Repository diff --git a/docs/networking/dns/dns-records-an-introduction.md b/docs/networking/dns/dns-records-an-introduction.md index 9774a560397..3fd7a07dcab 100644 --- a/docs/networking/dns/dns-records-an-introduction.md +++ b/docs/networking/dns/dns-records-an-introduction.md @@ -37,7 +37,7 @@ Every term to the left of the TLD and separated by a period is considered a more ### Name Servers -Choosing and specifying *name servers* is an essential part of domain ownership. If you don't, the Internet won't know where to find your DNS information, and your domain won't resolve. Name servers host a domain's DNS information in a text file called the *zone file*. They're are also known as Servers of Authority (SOAs). You can host your DNS information on name servers in one of several locations: +Choosing and specifying *name servers* is an essential part of domain ownership. If you don't, the Internet won't know where to find your DNS information, and your domain won't resolve. Name servers host a domain's DNS information in a text file called the *zone file*. They're are also known as Start of Authority (SOA) records. You can host your DNS information on name servers in one of several locations: - Linode (recommended) - Your registrar 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-fedora-13.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13.md index b27845dfc3c..34865541dd8 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13.md @@ -71,7 +71,7 @@ The next example will allow all requests from the IP address `11.22.33.44`. To s To summarize, there are four possible access control behaviors: -1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecusive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. +1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecursive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. 2. Unbound can `allow` traffic. This means that recursive requests will be filled when they originate from IP addresses belonging to specified netblocks. 3. Unbound can `deny` traffic. In this case, unbound will simply drop traffic and offer no error message. 4. Unbound can `refuse` traffic. This causes Unbound to send an error message in response to requests from disallowed sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14.md index f570e604178..8ea99b543f9 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14.md @@ -78,7 +78,7 @@ The next example will allow all requests from the IP address `11.22.33.44`. To s To summarize, there are four possible access control behaviors: -1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecusive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. +1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecursive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. 2. Unbound can `allow` traffic. This means that recursive requests will be filled when they originate from IP addresses belonging to specified netblocks. 3. Unbound can `deny` traffic. In this case, unbound will simply drop traffic and offer no error message. 4. Unbound can `refuse` traffic. This causes Unbound to send an error message in response to requests from disallowed sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15.md index cea44d7d94a..0089455f7b1 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15.md @@ -78,7 +78,7 @@ The next example will allow all requests from the IP address `11.22.33.44`. To s To summarize, there are four possible access control behaviors: -1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecusive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. +1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecursive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. 2. Unbound can `allow` traffic. This means that recursive requests will be filled when they originate from IP addresses belonging to specified netblocks. 3. Unbound can `deny` traffic. In this case, unbound will simply drop traffic and offer no error message. 4. Unbound can `refuse` traffic. This causes Unbound to send an error message in response to requests from disallowed 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/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic.md index e277ce60e7c..0adc6f09743 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic.md @@ -77,7 +77,7 @@ The next example will allow all requests from the IP address `11.22.33.44`. To s To summarize, there are four possible access control behaviors: -1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecusive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. +1. Unbound can `allow_snoop` traffic. This means that both recursive and nonrecursive requests will be filled when they originate from IP addresses belonging to specified netblocks. Nonrecursive request are needed to provide additional information for some tools, such as the `+trace` option of the `dig` utility. 2. Unbound can `allow` traffic. This means that recursive requests will be filled when they originate from IP addresses belonging to specified netblocks. 3. Unbound can `deny` traffic. In this case, unbound will simply drop traffic and offer no error message. 4. Unbound can `refuse` traffic. This causes Unbound to send an error message in response to requests from disallowed sources. diff --git a/docs/networking/dns/using-your-systems-hosts-file.md b/docs/networking/dns/using-your-systems-hosts-file.md index 1fb9f7d97cb..07f7fbf55cb 100644 --- a/docs/networking/dns/using-your-systems-hosts-file.md +++ b/docs/networking/dns/using-your-systems-hosts-file.md @@ -39,7 +39,7 @@ There are many different ways to use entries in the hosts file, and the types of 0.0.0.0 example.com -- Set a [fully qualified domain name](https://en.wikipedia.org/wiki/Fully_qualified_domain_name) (FQDN). In the example below, replace *example_hostname* with your system's hostname. The domain *example.com* can be a public internet domain (ex. a public website) or the domain of a private network (ex. your home LAN), or a subdomain (subdomain.example.com). It's important to add the FQDN entry directly after the localhost line, so the end result would look like: +- Set a [fully qualified domain name](https://en.wikipedia.org/wiki/Fully_qualified_domain_name) (FQDN). In the example below, replace *example_hostname* with your system's hostname. The domain *example.com* can be a public internet domain (ex. a public website) or the domain of a private network (ex. your home LAN), or a subdomain (subdomain.example.com). It's important to add the FQDN entry directly after the localhost line, so it looks like: 127.0.0.1 localhost 127.0.1.1 hostname.example.com example_hostname diff --git a/docs/networking/linux-static-ip-configuration.md b/docs/networking/linux-static-ip-configuration.md index 36616d80b66..903dc3e2a74 100644 --- a/docs/networking/linux-static-ip-configuration.md +++ b/docs/networking/linux-static-ip-configuration.md @@ -326,7 +326,7 @@ NETCONFIG_DNS_RESOLVER_OPTIONS="rotate" The configuration below applies to 14.04 and 16.04. See above for 17.10. Ubuntu 14.04 and 16.04 include [resolvconf](http://packages.ubuntu.com/xenial/resolvconf) in their base installation. This is an application which manages the contents of `/etc/resolv.conf`, so do not edit `resolv.conf` directly. Instead, add DNS resolver addresses and options to the network interface file as shown. -Like with Debian, systemd-networkd and systemd-resolved are both present but not enabled in Ubuntu 16.04. If you decide to enable these services to manage networking, you can not set static addresses in the file `/etc/network/interfaces` as shown below. You'll need to use the section further above for [Arch, Container Linux and Ubuntu 17.10](/docs/networking/linux-static-ip-configuration#arch--coreos-container-linux--ubuntu-1710_). For more information, see `man ifup`, `man ifdown`, `man interfaces 5`, `man systemd-networkd` and `man systemd-resolved`. +Like with Debian, systemd-networkd and systemd-resolved are both present but not enabled in Ubuntu 16.04. If you decide to enable these services to manage networking, you can not set static addresses in the file `/etc/network/interfaces` as shown below. You'll need to use the section further above for [Arch, Container Linux and Ubuntu 17.10](#arch-coreos-container-linux-ubuntu-17-10). For more information, see `man ifup`, `man ifdown`, `man interfaces 5`, `man systemd-networkd` and `man systemd-resolved`. {{< file-excerpt "/etc/network/interfaces" >}} . . . diff --git a/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9.md b/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9.md index c5f2c8c1ec5..e2720acf86c 100644 --- a/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9.md +++ b/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9.md @@ -164,4 +164,4 @@ Now let's replace **root\_squash** with **no\_root\_squash** in `/etc/exports` o sudo echo "Hi everyone" > /mnt/remotenfs/testfile2.txt -If you check the ownership of `testfile2.txt` either on the client or the server, you'll see that it is now owned by `root:root`. These simple examples illustrate the use and implications of **root\_squash** and **no\_root\_squash**. For your security, don't forget to remove the latter and readd the former in your `/etc/exports` as soon as possible. +If you check the ownership of `testfile2.txt` either on the client or the server, you'll see that it is now owned by `root:root`. These simple examples illustrate the use and implications of **root\_squash** and **no\_root\_squash**. For your security, don't forget to remove the latter and re-add the former in your `/etc/exports` as soon as possible. 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/persistent-terminal-sessions-with-tmux.md b/docs/networking/ssh/persistent-terminal-sessions-with-tmux.md index 9535b0f37ba..5f3e0e9cb74 100644 --- a/docs/networking/ssh/persistent-terminal-sessions-with-tmux.md +++ b/docs/networking/ssh/persistent-terminal-sessions-with-tmux.md @@ -2,7 +2,7 @@ author: name: Linode Community email: docs@linode.com -description: 'Keep processes running even if your SSH connection drops. Examples on managing tmux sessions, windows and panes' +description: 'Keep processes running even if your SSH connection drops. This guide includes examples on managing tmux sessions, windows and panes' og_description: 'This guide will show you how to use tmux the terminal multiplexer. tmux allows you to save terminal sessions, and manage multiple terminal sessions within one window' keywords: ['tmux','terminal','multiplexer','attach','detach','panes','sessions'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' @@ -22,18 +22,17 @@ external_resources: ## What is tmux? +Tmux is a **terminal multiplexer**. It creates a host **server** on your Linode and connects to it with a client window. If the client is disconnected, the server keeps running. When you reconnect to your Linode after rebooting your computer or losing your Internet connection, you can reattach to the tmux session and the files you were working with will still be open, and the processes you had running will still be active. -Tmux, is a **terminal multiplexer**. Tmux creates a host **server** on your Linode, and connects to it with a client window. When the client is disconnected, the server keeps running. When you reconnect to your Linode after rebooting your computer or losing your Internet connection, you can reattach to the tmux session and find the files you were working with still open, and the processes you had running are still active. - -tmux is also often used as a container for processes that should always be on. For example you might run a game server or an IRC client with tmux. +By attaching multiple sessions, windows, and panes to a tmux server, you can organize your workflow and easily manage multiple tasks and processes. ## Install tmux -Install tmux with your distribution's package manager: +Install tmux with your distribution's package manager. -1. To install tmux on Debian 9 or Ubuntu 16.04: +On Debian or Ubuntu: - sudo apt install tmux + sudo apt install tmux ## Attach and Detach from a tmux Session @@ -83,7 +82,7 @@ When a tmux session starts, a single window is created by default. It is possibl | **exit** | Close a window | | **Prefix** + **&** | Force kill-all processes in an unresponsive window | -By default, tmux names each window according to the process that spawned it (most commonly bash). To give windows names that are easier to remember and work with, you can rename a window with **Prefix** + , . +By default, tmux names each window according to the process that spawned it (most commonly bash). To give windows names that are easier to remember and work with, you can rename a window with **Prefix + ,**. ## Manage tmux Panes 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/ssh/ssh-connections-using-putty-on-windows.md b/docs/networking/ssh/ssh-connections-using-putty-on-windows.md index b832d771bd5..72faeff058b 100644 --- a/docs/networking/ssh/ssh-connections-using-putty-on-windows.md +++ b/docs/networking/ssh/ssh-connections-using-putty-on-windows.md @@ -78,7 +78,7 @@ PuTTY can securely run graphical applications hosted on a remote Linux server. Y 1. You wll need an X11 server for Windows. Download and install [Xming](http://sourceforge.net/projects/xming/), a free X server for Windows. Accept the defaults presented by the installer and you'll be running an X11 server when the install process completes. {{< note >}} -You will need the `xauth` package installed on your remote server for X11 forwarding to work correctly. It is installed by default on Debian and ReHat based systems, but may not be for other Linux distributions. +You will need the `xauth` package installed on your remote server for X11 forwarding to work correctly. It is installed by default on Debian and RedHat based systems, but may not be for other Linux distributions. {{< /note >}} 2. Next, you'll need to tell PuTTY to forward X11 connections to your desktop. diff --git a/docs/networking/ssh/using-sshfs-on-linux.md b/docs/networking/ssh/using-sshfs-on-linux.md index aa4f7d5886c..452c2222dff 100644 --- a/docs/networking/ssh/using-sshfs-on-linux.md +++ b/docs/networking/ssh/using-sshfs-on-linux.md @@ -50,23 +50,23 @@ If you are unfamiliar with users, groups and file permissions, be sure to visit To check if the `fuse` group exists run: - cat /etc/group | grep 'fuse' + cat /etc/group | grep 'fuse' -If the group exists, execute the following command with `sudo`, subsituting your user account name in place of "someuser": +If the group exists, execute the following command with `sudo`, substituting your user account name in place of "someuser": - sudo usermod -a -G fuse someuser + sudo usermod -a -G fuse someuser If the group does not exist it has to be created and added to the `fuse` group: - sudo groupadd fuse - sudo usermod -a -G fuse user + sudo groupadd fuse + sudo usermod -a -G fuse user Log out and log back in before proceeding using a normal user account. ### Mounting the Remote File System To mount a remote file system execute the command `sshfs`. The syntax for `sshfs` is: - sshfs [user@]host:[directory] mountpoint [options] + sshfs [user@]host:[directory] mountpoint [options] To Mount the home directory of a user named "user" on a remote server at "usersLinode.example.com", create a directory as a destination for the mounted folder. @@ -74,12 +74,12 @@ To Mount the home directory of a user named "user" on a remote server at "usersL Then we use the `sshfs` command to mount the directory from our remote server, to the directory on our local client. The syntax for `sshfs` is: `sshfs [user@]host:[directory] mountpoint [options]` Read more about `sshfs` here: [sshfs Manual](https://linux.die.net/man/1/sshfs) - sshfs user@usersLinode.example.com:/home/user ssfhsExample + sshfs user@usersLinode.example.com:/home/user ssfhsExample You can also `sshfs` to your Linode server's IP address: - sshfs user@192.168.0.0:/home/user sshfsExample + sshfs user@192.168.0.0:/home/user sshfsExample To unmount the filesystem, use the `umount` command: diff --git a/docs/networking/ssh/using-the-terminal.md b/docs/networking/ssh/using-the-terminal.md index aa0295c555b..a2da030de9d 100644 --- a/docs/networking/ssh/using-the-terminal.md +++ b/docs/networking/ssh/using-the-terminal.md @@ -206,7 +206,7 @@ If you append double ampersands (`&&`) to the end of a command, the shell will w ### Emacs Key Bindings -In general, the `bash` terminal provides emacs-like key bindings for navigation. In addition to `C-n` and `C-p` to access next and previous commands in the history the following key binding make it easier to navigate the text in the bash-terminal (`C-` refers to a Control- modifer, and `M-` refers to a "meta" or Alt- modifier): +In general, the `bash` terminal provides emacs-like key bindings for navigation. In addition to `C-n` and `C-p` to access next and previous commands in the history the following key binding make it easier to navigate the text in the bash-terminal (`C-` refers to a Control- modifier, and `M-` refers to a "meta" or Alt- modifier): - `C-a` Cursor to the beginning of the line (`C-a a` in screen) - `C-e` Cursor to the end of the line diff --git a/docs/networking/vpn/pritunl-vpn-ubuntu.md b/docs/networking/vpn/pritunl-vpn-ubuntu.md index 4d3f6f641d2..1bd3fc4f7a2 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 >}} @@ -67,7 +69,7 @@ If you've configured the firewall according to the [Securing Your Server](/docs/ [![Pritunl DB setup screen](/docs/assets/pritunl-db-setup-resized.png)](/docs/assets/pritunl-db-setup.png) -3. Connect to the database. The installer has already populated the mongoDB URI. If it looks correct, click **Save**. +3. Connect to the database. The installer has already populated the MongoDB URI. If it looks correct, click **Save**. Alternatively, you may enter any valid MongoDB URI to use as the database for Pritunl. @@ -78,7 +80,7 @@ If you've configured the firewall according to the [Securing Your Server](/docs/ - **Username:** *pritunl* - **Password:** *pritunl* -2. The Inital Setup form will appear: +2. The Initial Setup form will appear: ![Pritunl setup screen](/docs/assets/pritunl-setup.png) 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-12-04-precise-and-debian-7.md b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7.md index 197118fca95..2a291f72a13 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7.md @@ -24,7 +24,7 @@ OpenVPN, or Open Virtual Private Network, is a tool for creating networking tunn Before installing OpenVPN, we assume that you have followed our [Getting Started Guide](/docs/getting-started/). If you're new to Linux server administration you may be interested in our [Introduction to Linux Concepts Guide](/docs/tools-reference/introduction-to-linux-concepts), [Beginner's Guide](/docs/beginners-guide/) and [Administration Basics Guide](/content/using-linux/administration-basics). If you're concerned about securing on your Linode, you might be interested in our [Security Basics](/content/security/basics) article as well. {{< note >}} -For many private networking tasks, we suggest that you consider the functions of the OpenSSH package which can provide easier VPN and VPN-like services. OpenSSH is also installed and configured by default on all Linodes. For example, see [Using SSHFS on Linux and MacOS X](/docs/networking/ssh-filesystems) or our guide on [Setting up an SSH Tunnel](/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing) for more information. Nevertheless, if your deployment requires a more traditional VPN solution like OpenVPN, this document covers the installation and configuration of the OpenVPN software. +For many private networking tasks, we suggest that you consider the functions of the OpenSSH package which can provide easier VPN and VPN-like services. OpenSSH is also installed and configured by default on all Linodes. For example, see [Using SSHFS on Linux and Mac OS X](/docs/networking/ssh-filesystems) or our guide on [Setting up an SSH Tunnel](/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing) for more information. Nevertheless, if your deployment requires a more traditional VPN solution like OpenVPN, this document covers the installation and configuration of the OpenVPN software. {{< /note >}} ## How OpenVPN Works @@ -228,7 +228,7 @@ Most network management tools provide some facility for managing connections to If you use OS X on a Mac, we have found that the [Tunnelblick](http://code.google.com/p/tunnelblick/) tool provides an easy method for managing OpenVPN connections. If you use Windows, the [OpenVPN GUI](http://openvpn.se/) tool may be an effective tool for managing your connections too. Linux desktop users can install the OpenVPN package and use the network management tools that come with the desktop environment. -Here we will go through installing Tunneblick on OSX: +Here we will go through installing Tunnelblick on OSX: 1. To download the latest version of Tunnelblick, [click here](https://tunnelblick.net/downloads.html#Tunnelblick_Stable_Release). After opening the dmg file you can drag it into applications or open it immediately and it will copy itself. 2. After starting, you will see this splash screen: 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/networking/vpn/set-up-a-hardened-openvpn-server.md b/docs/networking/vpn/set-up-a-hardened-openvpn-server.md index edf82d20aa0..86380922965 100644 --- a/docs/networking/vpn/set-up-a-hardened-openvpn-server.md +++ b/docs/networking/vpn/set-up-a-hardened-openvpn-server.md @@ -207,7 +207,7 @@ According to OpenSSL's man page, `genpkey -genparam` supersedes `dhparam`. ## VPN Certificate Authority -Client certificates and keys should be not be managed directly on your VPN server. They should be created locally on a computer and stored offline. For the best quality entropy, they should be created on a computer which has a powerful CPU. You should avoid doing this on a virutal machine. +Client certificates and keys should be not be managed directly on your VPN server. They should be created locally on a computer and stored offline. For the best quality entropy, they should be created on a computer which has a powerful CPU. You should avoid doing this on a virtual machine. You can generate certificates and keys two ways: by using [EasyRSA](https://github.com/OpenVPN/easy-rsa) scripts, or by creating your own public key infrastructure for your VPN, which includes customizations not included in the default OpenSSL configuration file. diff --git a/docs/networking/vpn/set-up-a-streisand-gateway.md b/docs/networking/vpn/set-up-a-streisand-gateway.md index 4818859584a..e19c24df620 100644 --- a/docs/networking/vpn/set-up-a-streisand-gateway.md +++ b/docs/networking/vpn/set-up-a-streisand-gateway.md @@ -28,7 +28,7 @@ However, the configuration process is time-consuming, especially for those with Streisand uses open-source platform Ansible to automate much of the process that creates and configures a Linode. This means, unlike normal VPN setup, you should **not** create a Linode before beginning this guide, or go through the usual steps of connecting to and securing your server. All of the commands will be run from your local machine. You will, however, need the API key from your Linode account: -1. Open the Linode Manager and select "My Profile," in the upper right corner of the screen next to your account name. You will need to re-aunthenticate before viewing this section. +1. Open the Linode Manager and select "My Profile," in the upper right corner of the screen next to your account name. You will need to re-authenticate before viewing this section. 2. Select the "API Keys" tab on the far right of the menu. @@ -119,7 +119,7 @@ Streisand will create a new Linode under your account early in the configuration {{< /caution >}} {{< note >}} -You should not recieve any errors during the install. If you receive an error related to `Alert_cpu_threshold must be between 0 and 2000`, visit this [link](https://github.com/jlund/streisand/issues/626#issuecomment-319812261) to address the issue. +You should not receive any errors during the install. If you receive an error related to `Alert_cpu_threshold must be between 0 and 2000`, visit this [link](https://github.com/jlund/streisand/issues/626#issuecomment-319812261) to address the issue. {{< /note >}} ## Connect to Your Streisand Gateway diff --git a/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients.md b/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients.md index 7dee743bdce..c2edab594e1 100644 --- a/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients.md +++ b/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients.md @@ -16,7 +16,7 @@ external_resources: - '[Ubuntu Help Page for iptables](https://help.ubuntu.com/community/IptablesHowTo)' --- -A virtual private network is often used to evade censorship, surveillance, or geolocation by routing internet traffic from your local device to the remote VPN server through an encrypted tunnel. In this scenario, the VPN server is the internet gateway for all connected client devices, and it forwards traffic from clients out to the interent, then receives and routes the traffic back to the client devices. However, there is always a risk that the VPN connection will unexpectedly drop, which can result in your traffic being communicated over the public internet instead of through the encrypted VPN connection. +A virtual private network is often used to evade censorship, surveillance, or geolocation by routing internet traffic from your local device to the remote VPN server through an encrypted tunnel. In this scenario, the VPN server is the internet gateway for all connected client devices, and it forwards traffic from clients out to the internet, then receives and routes the traffic back to the client devices. However, there is always a risk that the VPN connection will unexpectedly drop, which can result in your traffic being communicated over the public internet instead of through the encrypted VPN connection. For this reason, VPN clients often use firewall rules to ensure that internet traffic is allowed only to the VPN gateway. This protects the client's traffic from being compromised in the event of a sudden disconnection from the VPN server. This functionality is sometimes referred to as a VPN "kill switch," because it has the effect of instantly blocking all connections to the internet if the VPN connection should fail. diff --git a/docs/platform/accounts-and-passwords.md b/docs/platform/accounts-and-passwords.md index 046a4e3803e..1a51a80a198 100644 --- a/docs/platform/accounts-and-passwords.md +++ b/docs/platform/accounts-and-passwords.md @@ -58,12 +58,13 @@ Here's how to set a user's access permissions: 3. Enter your password and click **Authenticate**. The *User Manager* webpage appears. 4. Locate the user in the list and select the **Edit Permissions** link. The webpage shown below appears. -[![Configure permissions for a user in the Linode Manager.](/docs/assets/922-user1-small.png)](/docs/assets/921-user1.png) + [![Configure permissions for a user in the Linode Manager.](/docs/assets/922-user1-small.png)](/docs/assets/921-user1.png) 5. Select checkboxes in the **Global Grants** section to allow the user to add Linodes, Domains, and NodeBalancers to the account, create StackScripts, access all billing information, and cancel the entire account. - {{< note >}} -Granting access to settings denoted with a dollar sign (\$) will allow the user perform actions that incur billing costs, such as adding or resizing a Linode. + {{< note >}} +Granting access to settings denoted with a dollar sign ($) will allow the user perform actions that incur billing costs, such as adding or resizing a Linode. + {{< /note >}} 6. Select checkboxes in the other sections to allow the user to access certain features and sections of the Linode Manager. diff --git a/docs/platform/disk-images/copying-a-disk-image-over-ssh.md b/docs/platform/disk-images/copying-a-disk-image-over-ssh.md index 7d5481d961d..9d7805b6940 100644 --- a/docs/platform/disk-images/copying-a-disk-image-over-ssh.md +++ b/docs/platform/disk-images/copying-a-disk-image-over-ssh.md @@ -144,7 +144,7 @@ As above, you will want to verify the disk by mounting it on the receiving Linod ### Expand the Filesystem -If the disk you created on the receiving Linode is larger than the source disk (for example you're transferring a disk from a smaller linode to a larger linode), you'll have to resize the filesystem in order to make use of the new space. +If the disk you created on the receiving Linode is larger than the source disk (for example you're transferring a disk from a smaller Linode to a larger Linode), you'll have to resize the filesystem in order to make use of the new space. You can check if this is necessary by comparing the space reported by the filesystem: 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/disk-images/migrating-a-server-to-your-linode.md b/docs/platform/disk-images/migrating-a-server-to-your-linode.md index 215bf8201bf..60054a538f7 100644 --- a/docs/platform/disk-images/migrating-a-server-to-your-linode.md +++ b/docs/platform/disk-images/migrating-a-server-to-your-linode.md @@ -43,14 +43,14 @@ We assume that your existing server has a single root partition. If you have mul 3. Select a Linode. The Linode's dashboard appears. 4. Create a disk to hold the files from the existing server. Select **Create a new Disk**. The webpage shown below appears. - [![Creating a disk](/docs/assets/1039-migrate1.png)](/docs/assets/1039-migrate1.png) + [![Creating a disk](/docs/assets/1039-migrate1.png)](/docs/assets/1039-migrate1.png) 5. Enter a descriptive name for the disk in the **Label** field. 6. Enter a size for the disk in the **Size** field. You should make the disk large enough to hold the contents of your current server's root partition. 7. Click **Save Changes** to create the disk. The Linode's dashboard appears. You can monitor the disk creation process by watching the *Host Job Queue*. 8. Now create a swap disk for your existing server. Select **Create a new Disk**. The webpage shown below appears. - [![Creating a disk](/docs/assets/1040-migrate2.png)](/docs/assets/1040-migrate2.png) + [![Creating a disk](/docs/assets/1040-migrate2.png)](/docs/assets/1040-migrate2.png) 9. Enter a name for the swap disk in the **Label** field. 10. From the **Type** menu, select **swap**. @@ -66,12 +66,12 @@ You'll need a configuration profile to boot your existing server after you uploa 1. In the [Linode Manager](https://manager.linode.com), select the Linode's dashboard. 2. Select **Create a new Configuration Profile**. The webpage shown below appears. - [![Creating a configuration profile](/docs/assets/migrate-configuration-profile-small.png)](/docs/assets/migrate-configuration-profile.png) + [![Creating a configuration profile](/docs/assets/migrate-configuration-profile-small.png)](/docs/assets/migrate-configuration-profile.png) 3. Enter a name for the configuration profile in the **Label** field. 4. *Optional:* Enter notes for the configuration profile in the **Notes** field. - {{< note >}} + {{< note >}} Make sure that you select the correct kernel for your existing server. There are 32-bit and 64-bit versions available. The 64-bit version has `x86_64` in the name. {{< /note >}} @@ -137,7 +137,7 @@ After the network copy is complete and the files from the existing server have b The entire mounted filesystem will be recursively searched for any instances of your old IP address. Note that this replacement operation can take a while to complete. -3. You can find your IP information in the Linode Manger under the remote access tab. You'll need your public IP, gateway, and dns server. On the Linode, open the releveant network configuration files for your distribution and adjust them accordingly. +3. You can find your IP information in the Linode Manger under the remote access tab. You'll need your public IP, gateway, and dns server. On the Linode, open the relevant network configuration files for your distribution and adjust them accordingly. ### Configuring Mount Points @@ -149,7 +149,7 @@ Now you should configure mount points for the new disks. Here's how: 2. Change the mount point for `root` to `/dev/sda`, and the mount and `swap` to `/dev/sdb`, as shown below: - {{< file-excerpt "/media/sda/etc/fstab" >}} + {{< file-excerpt "/media/sda/etc/fstab" >}} # /etc/fstab: static file system information. # # @@ -211,7 +211,7 @@ Here's how to fix persistent rules: 3. Modify the file to remove `eth*` from the beginning of the kernel whitelist so that it does not create persistent rules for `eth*`. In this case we simply removed `eth*` from the beginning of the kernel whitelist. The relevant section in the file should resemble the following: - {{< file-excerpt "udev network rules" >}} + {{< file-excerpt "udev network rules" >}} # device name whitelist KERNEL!="ath*|wlan*[0-9]|msh*|ra*|sta*|ctc*|lcs*|hsi*", \ GOTO="persistent_net_generator_end" @@ -239,7 +239,7 @@ Now it's time to boot your Linode from the new disks. All you have to do is sele 3. Select a Linode. The Linode's dashboard appears. 4. Select the configuration profile you created earlier, as shown below. - [![Selecting the configuration profile](/docs/assets/1047-migrate6-small.png)](/docs/assets/1048-migrate6.png) + [![Selecting the configuration profile](/docs/assets/1047-migrate6-small.png)](/docs/assets/1048-migrate6.png) 5. Click **Reboot** to restart your Linode with the configuration profile and disks you just created. diff --git a/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode.md b/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode.md index b888edd9890..9f6df4f8bc6 100644 --- a/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode.md +++ b/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode.md @@ -21,7 +21,7 @@ external_resources: Infrastructure as code (IaC) is software that gives the developer the ability to build, manage, and provision computing environments with a high-level programming language. Some benefits of this technology are: enforcing DevOps best practices, process automation and the opportunity to use version control systems for greater visibility and collaboration within a team. Terraform stands out from other IaC solutions because it's an orchestration tool, which means *it's designed specifically for bare-metal server and virtual machines*. The configuration of the servers can be achieved using Terraform, but implementing specialized software for tasks like Puppet, Chef, or Ansible are easily done through a provisioner architecture. -This guide will showcase Terraform, and its benefits when used in conjuction with Linode's cloud technology. +This guide will showcase Terraform, and its benefits when used in conjunction with Linode's cloud technology. {{< caution >}} 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 0a589a89545..aa258d24579 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: 2017-06-16 +modified: 2018-02-01 modified_by: name: Linode published: 2017-06-16 title: How to Use Block Storage with Your Linode --- -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 currently-existing, so you do not need to recreate your server to add a block storage volume. +![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 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. -{{< caution >}} -Linode's backup services do NOT cover block storage volumes. -You MUST execute your own backups for this data. -{{< /caution >}} +The Block Storage service is available now in production in the us-west/Fremont region only. -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. +{{< caution >}} +- Linode's backup services do not cover Block Storage Volumes. You must execute your own backups for this data. -![Block storage title graphic](/docs/assets/block-storage-title-graphic.png) +- Your Linode must be running in Paravirtualization 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 name you assign the volume. 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 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) + [![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 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) + [![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. @@ -138,8 +130,8 @@ Need ideas for what to do with space? We have several guides which walk you thro [Install Plex Media Server on Ubuntu 16.04](/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04) -[Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm](/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm) +[Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm](/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/) -[Using Subsonic to Stream Media From Your Linode](/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian) +[Using Subsonic to Stream Media From Your Linode](/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/) [Install GitLab on Ubuntu 14.04](/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr) 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/longview/longview-app-for-nginx.md b/docs/platform/longview/longview-app-for-nginx.md index 053fc22692d..0e3a6d9452e 100644 --- a/docs/platform/longview/longview-app-for-nginx.md +++ b/docs/platform/longview/longview-app-for-nginx.md @@ -13,27 +13,27 @@ published: 2013-11-05 title: Longview App for Nginx --- -Longview for Nginx is a Longview App. The Longview Nginx tab appears in the Linode Manager when Longview detects that you have Nginx installed on your Linode. With the Longview Nginx App, you'll be able to view statistics for Nginx on your Linode. It can help you keep track of Nginx's settings, workers and requests, system resource consumption, and other information. +Longview for NGINX is a Longview App. The Longview NGINX tab appears in the Linode Manager when Longview detects that you have NGINX installed on your Linode. With the Longview NGINX App, you'll be able to view statistics for NGINX on your Linode. It can help you keep track of NGINX's settings, workers and requests, system resource consumption, and other information. ## Installing Prerequisites: -- Install and start [Nginx](/docs/websites/nginx) +- Install and start [NGINX](/docs/websites/nginx) - Install the [Longview client](/docs/platform/longview/longview/#installing-the-client) ### Debian and Ubuntu Automatic Configuration -If Nginx is installed and running when you install the Longview client, the Nginx App should enable and configure itself automatically. +If NGINX is installed and running when you install the Longview client, the NGINX App should enable and configure itself automatically. -If you already have Longview installed, and later want to install Ngnix and enable the Longview App for it, you can run Longview through its automatic configuration sequence again. Depending on how Nginx's status module is configured, it will either find everything it needs to get the Nginx App started, or it will pop up a request to make some additional configurations. And don't worry - your old Longview data will stay safe. +If you already have Longview installed, and later want to install NGINX and enable the Longview App for it, you can run Longview through its automatic configuration sequence again. Depending on how NGINX's status module is configured, it will either find everything it needs to get the NGINX App started, or it will pop up a request to make some additional configurations. And don't worry - your old Longview data will stay safe. 1. Make sure that Nginx is running. 2. Run the automatic Longview configuration command on your Linode via SSH: dpkg-reconfigure -phigh linode-longview -3. For most people, this will prompt a popup asking whether you would like Longview to attempt an automatic configuration of the Nginx status module: +3. For most people, this will prompt a popup asking whether you would like Longview to attempt an automatic configuration of the NGINX status module: [![Longview has detected Nginx running on this server but was unable to access the server status page. Would you like to attempt to automatically configure the Nginx status module? This will require restarting Nginx to enable. Autoconfigure Mod\_Status: \ \](/docs/assets/1456-longview_ngnix_popup_crop.png)](/docs/assets/1456-longview_ngnix_popup_crop.png) @@ -41,10 +41,10 @@ If you already have Longview installed, and later want to install Ngnix and enab It's also possible that Longview will be able to locate the status page on its own. In that case, you won't get the popup, and you can go directly to Step 5. {{< /note >}} -4. This popup occurs when Longview can't locate the Nginx status page. In turn, this could indicate that the status page is in an unusual and unspecified location, or that the status module isn't enabled, or that Nginx itself is misconfigured. Select one of the options: +4. This popup occurs when Longview can't locate the NGINX status page. In turn, this could indicate that the status page is in an unusual and unspecified location, or that the status module isn't enabled, or that NGINX itself is misconfigured. Select one of the options: - - **\**: the Longview tool will quit, and you can do a [manual configuration](#manual-configuration-all-distributions), which is safer if you have a delicate Nginx setup. - - **\**: the Longview tool will attempt to enable the status module, set the status page location in a new vhost configuration file, and restart Nginx. This option is easier, but has the potential to disrupt your current Nginx configuration. If you choose yes, and the configuration is successful, you should see output like the following: + - **\**: the Longview tool will quit, and you can do a [manual configuration](#manual-configuration-all-distributions), which is safer if you have a delicate NGINX setup. + - **\**: the Longview tool will attempt to enable the status module, set the status page location in a new vhost configuration file, and restart NGINX. This option is easier, but has the potential to disrupt your current NGINX configuration. If you choose yes, and the configuration is successful, you should see output like the following: [ ok ] Stopping Longview Agent: longview. Checking Nginx configuration... @@ -63,13 +63,13 @@ If instead you receive a failure message, such as: [FAIL] Reloading web server config: nginx failed! -You will need to double-check your Nginx installation, and then do a [manual configuration](#manual-configuration-all-distributions). You can also visit the [Troubleshooting](#troubleshooting) section at the end of this article. +You will need to double-check your NGINX installation, and then do a [manual configuration](#manual-configuration-all-distributions). You can also visit the [Troubleshooting](#troubleshooting) section at the end of this article. ### Manual Configuration (All Distributions) -To enable the Nginx Longview app manually, follow these steps on your Linode via SSH: +To enable the NGINX Longview app manually, follow these steps on your Linode via SSH: -1. Add the following lines to your Nginx configuration to enable the status module and set the location of the status page. The lines can go at the end of the main configuration file at `nginx.conf` or in a separate vhost configuration file: +1. Add the following lines to your NGINX configuration to enable the status module and set the location of the status page. The lines can go at the end of the main configuration file at `nginx.conf` or in a separate vhost configuration file: {{< file-excerpt "nginx.conf" >}} server { @@ -85,7 +85,7 @@ server { {{< /file-excerpt >}} -2. Restart Nginx: +2. Restart NGINX: service nginx restart @@ -103,7 +103,7 @@ location http://127.0.0.1/nginx_status 5. Refresh the Longview Nginx tab in the Linode Manager. -You should now be able to see Longview data for Nginx. If that's not the case, proceed to the [Troubleshooting](#troubleshooting) section at the end of this article. +You should now be able to see Longview data for NGINX. If that's not the case, proceed to the [Troubleshooting](#troubleshooting) section at the end of this article. ## Viewing Statistics @@ -117,21 +117,21 @@ Click the image for a full-size view. [![The Longview Nginx App.](/docs/assets/1455-longview_nginx_stats_sm.png)](/docs/assets/1454-longview_nginx_stats.png) -You'll see the current version of Nginx listed on the upper right. +You'll see the current version of NGINX listed on the upper right. Mouse over a data point to see the exact numbers for that time. You can also zoom in on data points, or view older time periods with Longview Pro. For details, jump to this section in the main article about [navigating the Longview interface](/docs/platform/longview/longview#using-the-interface). The next sections cover the Longview Nginx App in detail. ### Requests -The **Requests** graph shows the total number of requests Nginx handled at the selected time. This is every HTTP and HTTPS request to your Linode. +The **Requests** graph shows the total number of requests NGINX handled at the selected time. This is every HTTP and HTTPS request to your Linode. ### Connections -The **Connections** graph shows the amount of data that Nginx accepted and handled via web requests at the time selected. +The **Connections** graph shows the amount of data that NGINX accepted and handled via web requests at the time selected. ### Workers -The **Workers** graph shows all of the Nginx workers at the selected time. The workers are broken down by state: +The **Workers** graph shows all of the NGINX workers at the selected time. The workers are broken down by state: - Waiting - Reading @@ -139,27 +139,27 @@ The **Workers** graph shows all of the Nginx workers at the selected time. The w ### CPU -The **CPU** graph shows the percentage of your Linode's CPU being used by Nginx at the selected time. If you want to see the total CPU use instead, check the [Overview tab](/docs/platform/longview/longview#overview-tab). +The **CPU** graph shows the percentage of your Linode's CPU being used by NGINX at the selected time. If you want to see the total CPU use instead, check the [Overview tab](/docs/platform/longview/longview#overview-tab). ### Memory -The **Memory** graph shows the amount of RAM being used by Nginx at the selected time. If you want to see your Linode's total memory use instead, check the [Overview tab](/docs/platform/longview/longview#overview-tab). +The **Memory** graph shows the amount of RAM being used by NGINX at the selected time. If you want to see your Linode's total memory use instead, check the [Overview tab](/docs/platform/longview/longview#overview-tab). ### Disk IO -The **Disk IO** graph shows the amount of input to and output from the disk caused by Nginx at the selected time. To see the total IO instead, visit the [Disks tab](/docs/platform/longview/longview#disks-tab). +The **Disk IO** graph shows the amount of input to and output from the disk caused by NGINX at the selected time. To see the total IO instead, visit the [Disks tab](/docs/platform/longview/longview#disks-tab). ### Process Count -The **Process Count** graph shows the total number of processes on your Linode spawned by Nginx at the selected time. If you want to see more details, and how this stacks up against the total number of processes on your Linode, see the [Process Explorer tab](/docs/platform/longview/longview#process-explorer-tab). +The **Process Count** graph shows the total number of processes on your Linode spawned by NGINX at the selected time. If you want to see more details, and how this stacks up against the total number of processes on your Linode, see the [Process Explorer tab](/docs/platform/longview/longview#process-explorer-tab). ## Troubleshooting If you don't see Longview data for Nginx, you'll instead get an error on the page and instructions on how to fix it. As a general tip, you can check the `/var/log/linode/longview.log` file for errors as well. -### Unable to Access Server Status Page for Nginx +### Unable to Access Server Status Page for NGINX -More specifically, the error will state `Unable to access server status page (http://example.com/example) for Nginx: `. This error occurs when Nginx's status setting is disabled or has been changed from the default location. +More specifically, the error will state `Unable to access server status page (http://example.com/example) for Nginx: `. This error occurs when NGINX's status setting is disabled or has been changed from the default location. {{< note >}} This error occurs when Longview attempts to check the status page `location` listed in `/etc/linode/longview.d/Nginx.conf`, or the default page at `http://127.0.0.1/nginx_status`, but receives a non-200 HTTP response code. Basically, it means that the status page Longview is checking doesn't exist. @@ -167,11 +167,11 @@ This error occurs when Longview attempts to check the status page `location` lis To fix this, follow these steps: -1. Make sure Nginx is running: +1. Make sure NGINX is running: service nginx restart -2. Check the status page location, and make sure it's available over Port 80. The default location Longview checks is `http://127.0.0.1/nginx_status` on localhost, but Nginx doesn't typically have a status page location set up by default. In the Nginx configuration file (typically `nginx.conf` or a vhost configuration file), this is designated with the lines: +2. Check the status page location, and make sure it's available over Port 80. The default location Longview checks is `http://127.0.0.1/nginx_status` on localhost, but NGINX doesn't typically have a status page location set up by default. In the NGINX configuration file (typically `nginx.conf` or a vhost configuration file), this is designated with the lines: {{< file-excerpt "nginx.conf" >}} server { @@ -187,9 +187,8 @@ server { {{< /file-excerpt >}} - 3. Longview is designed to check the default location automatically. If you use the default location shown above, you should be done. Refresh the Longview Nginx tab in the Linode Manager to verify that it's working now. -4. If you're not using the default location, you need to create a new file, `/etc/linode/longview.d/Nginx.conf`, and set the `location` variable to match what you set in the Nginx configuration file: +4. If you're not using the default location, you need to create a new file, `/etc/linode/longview.d/Nginx.conf`, and set the `location` variable to match what you set in the NGINX configuration file: {{< file "/etc/linode/longview.d/Nginx.conf" >}} location http://127.0.0.1/url-goes-here @@ -204,10 +203,10 @@ location http://127.0.0.1/url-goes-here 6. Refresh the Longview Nginx tab in the Linode Manager to verify that it's working now. {{< note >}} -If you originally compiled Nginx without the status module, you will need to recompile it with `--with-http_stub_status_module` and all your other settings. Then go back and try to enable the Longview Nginx App. +If you originally compiled NGINX without the status module, you will need to recompile it with `--with-http_stub_status_module` and all your other settings. Then go back and try to enable the Longview Nginx App. {{< /note >}} -### The Nginx Status Page Doesn't Look Right +### The NGINX Status Page Doesn't Look Right More specifically, the error will state `The Nginx status page doesn't look right. Check and investigate any redirects for misconfiguration.` This error occurs when Longview is able to reach the status page, but doesn't receive the expected content. @@ -217,21 +216,21 @@ This error occurs when Longview attempts to check the status page, and receives To resolve this issue, follow these steps: -1. Visit the URL shown in the error. See if it directs or redirects you to a page that isn't the Nginx status page. -2. Update your Nginx and Longview settings so that they specify the same location: +1. Visit the URL shown in the error. See if it directs or redirects you to a page that isn't the NGINX status page. +2. Update your NGINX and Longview settings so that they specify the same location: - - The **server\_name** and **location** lines in your Nginx configuration file + - The **server_name** and **location** lines in your NGINX configuration file - The **location** line in `/etc/linode/longview.d/Nginx.conf` If the location line isn't set in `/etc/linode/longview.d/Nginx.conf`, Longview will check the default location of `http://127.0.0.1/nginx_status` on localhost. -3. Make sure there aren't any Nginx redirects or other settings that are affecting this page. +3. Make sure there aren't any NGINX redirects or other settings that are affecting this page. 4. Restart Longview: service longview restart 5. Refresh the Longview Nginx tab in the Linode Manager to verify that it's working now. -### Nginx Tab is Missing +### NGINX Tab is Missing -If the Longview Nginx tab is missing entirely, this indicates that Nginx is either not installed, or has stopped. If you restart Nginx, you will be able to see the tab again and view all of your old data. +If the Longview Nginx tab is missing entirely, this indicates that NGINX is either not installed, or has stopped. If you restart NGINX, you will be able to see the tab again and view all of your old data. diff --git a/docs/platform/longview/longview.md b/docs/platform/longview/longview.md index a5072e4d183..615c470a503 100644 --- a/docs/platform/longview/longview.md +++ b/docs/platform/longview/longview.md @@ -42,7 +42,7 @@ The Longview client is [open source](https://github.com/linode/longview) and can It can take several minutes for data to start showing in the Manager but once it does, you'll see the graphs and charts populating with your Linode's metrics. - ![Linode Manager Longview data](/docs/assets/linode-manager-longview-running.png "Linode Manager Longivew running") + ![Linode Manager Longview data](/docs/assets/linode-manager-longview-running.png "Linode Manager Longview running") ### Manual Installation with yum or apt @@ -92,7 +92,7 @@ deb http://apt-longview.linode.com/ xenial main sudo mkdir /etc/linode/ -5. Copy the API key from either the *Welcome to Longview!* modal window or the **Settings** tab of your Longivew client's overview page in the Linode Manager. Put the key into a file, replacing key in the command below with your own. +5. Copy the API key from either the *Welcome to Longview!* modal window or the **Settings** tab of your Longview client's overview page in the Linode Manager. Put the key into a file, replacing key in the command below with your own. echo '266096EE-CDBA-0EBB-23D067749E27B9ED' | sudo tee /etc/linode/longview.key @@ -127,7 +127,7 @@ Once your system is set up as a Longview client, you will also have access to Li ### Updating Longview -When an update is available for Longivew, you'll receive a notice of this as a banner at the top of the Linode Manager. +When an update is available for Longview, you'll receive a notice of this as a banner at the top of the Linode Manager. - If you are using CentOS, Debian, or Ubuntu, the `linode-longview` package will update via the system's package manager, just like any other upstream package. diff --git a/docs/platform/meltdown_statement.md b/docs/platform/meltdown_statement.md index 092829484d3..1150d1c3e44 100644 --- a/docs/platform/meltdown_statement.md +++ b/docs/platform/meltdown_statement.md @@ -6,7 +6,7 @@ description: "Intel recently disclosed two vulnerabilities that affect processor keywords: ["meltdown", "spectre", "vulnerability", "kernel"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-01-11 -modified: 2018-01-11 +modified: 2018-01-17 modified_by: name: Linode title: 'What You Need to Do to Mitigate Meltdown and Spectre' @@ -15,25 +15,60 @@ external_resources: - '[MeltdownAttack.com](https://meltdownattack.com/)' - '[How to Install Software Updates](/docs/getting-started/#install-software-updates)' - '[Reboot Survival Guide](/docs/uptime/reboot-survival-guide/)' + - '[Linode Blog: CPU Vulnerabilities: Meltdown & Spectre](https://blog.linode.com/2018/01/03/cpu-vulnerabilities-meltdown-spectre/)' --- ## 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. -### What Should I Do? +## FAQ + +### Can this maintenance be postponed or rescheduled? + +No. Due to the critical nature and logistical requirements of these updates, we aren’t able to reschedule or push back the provided maintenance windows. Our team is working around the clock to have our infrastructure patched against the Meltdown and Spectre vulnerabilities as quickly as possible. + +### Can I start this maintenance early? + +No. Unlike our scheduled migrations, you won’t be able to initiate the maintenance early. + +### What’s Linode’s current status on patching these vulnerabilities? + +Our current infrastructure status for each vulnerability is listed in our Meltdown and Spectre document found [in the chart below](#linode-infrastructure-status). + +### What does “Phase Complete” in the Linode Manager mean? + +Maintenance for the Meltdown and Spectre vulnerabilities is happening in multiple phases, which are described in our Meltdown and Spectre document found here. As each phase is completed for the physical host on which your Linode resides, we will display progress updates in the Linode Manager. + +To fully mitigate the Meltdown and Spectre vulnerabilities, additional maintenance will be required in the future. When the future maintenance has been scheduled, we will provide additional information. + +You can find more information and stay updated on our progress by checking out the [What Should I Do?](#what-should-i-do) section below. + +### When will the next maintenance phase take place? + +We don't yet have an ETA on when the next round of maintenance will begin. Once we do, we'll provide additional information in the Linode Manager, as well as through Support tickets. + +### Is there anything that I need to do? + +Yes. To further protect your Linode, we strongly recommend that you verify it is configured to boot using the `4.14.11` or newer kernel, which includes patches to help address these vulnerabilities. If your Linode’s Configuration Profile is set to utilize our latest kernel, your kernel will automatically be updated to the patched version upon rebooting. + +### Can I reboot my Linode with the new kernel to avoid the maintenance? + +Yes, but while rebooting with the new kernel will help prepare your Linode for the upcoming maintenance and help protect you against Meltdown, it will not replace the need for this maintenance. In order to fully address the vulnerabilities, we will need to perform maintenance on our infrastructure as scheduled. We will update the status of our maintenance phases within the Linode Manager and [in the chart below](#linode-infrastructure-status). + +## What Should I Do? * Visit our [Reboot Survival Guide](/docs/uptime/reboot-survival-guide/) to prepare for a graceful reboot. -* [Update your kernel](/docs/platform/meltdown_statement/#how-to-reboot-into-an-updated-kernel) and reboot. +* [Update your kernel](#how-to-reboot-into-an-updated-linode-kernel) and reboot. * [Follow our blog for updates](https://blog.linode.com/2018/01/03/cpu-vulnerabilities-meltdown-spectre/). ### Linode Infrastructure Status -| **Exploit** | **Fix** | **Information** | -|---|---|---| -| **Meltdown** | In progress | Patching in progress. | -| **Spectre-V1** | No | No patch is available yet. | -| **Spectre-V2** | No | No patch is available yet. | +| **Exploit** | **Fix** | **Information** | +|----------------|----------|----------------------------| +| **Meltdown** | Deployed | Patching is complete. | +| **Spectre-V1** | No | No patch is available yet. | +| **Spectre-V2** | No | No patch is available yet. | ## What does this mean for Linode Customers? @@ -84,7 +119,7 @@ If you boot your Linode using the **GRUB** or **Direct Disk** boot setting, your 2. Reboot your system. When it comes back up, use the command `uname -r` to verify you are running the new kernel against the patched version given in your distribution's security bulletin (see links below). This is also the recommended mitigation path for any hardware you use at home: your laptop, network hardware, and home servers. - [Centos 6](https://access.redhat.com/errata/RHSA-2018:0007) (see the *Overview* tab), [Centos 7](https://access.redhat.com/errata/RHSA-2018:0007), [Debian](https://security-tracker.debian.org/tracker/CVE-2017-5754), [Ubuntu](https://people.canonical.com/~ubuntu-security/cve/2017/CVE-2017-5754.html). + [CentOS 6](https://access.redhat.com/errata/RHSA-2018:0007) (see the *Overview* tab), [CentOS 7](https://access.redhat.com/errata/RHSA-2018:0007), [Debian](https://security-tracker.debian.org/tracker/CVE-2017-5754), [Ubuntu](https://people.canonical.com/~ubuntu-security/cve/2017/CVE-2017-5754.html). ## Spectre Where Meltdown is a specific attack implementation, Spectre targets the way modern CPUs work, regardless of speculative execution. Nearly all computing platforms manufactured since 1995 are vulnerable to Spectre, including non-x86 systems such as ARM, IBM PowerSystems, and other architectures. 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..367983d12a7 100644 --- a/docs/platform/nodebalancer/getting-started-with-nodebalancers.md +++ b/docs/platform/nodebalancer/getting-started-with-nodebalancers.md @@ -45,29 +45,29 @@ Sticking with the simple web application example above, the backend Linode curre 1. Visit the NodeBalancers tab in the Linode Manager. - [![The NodeBalancer tab.](/docs/assets/796-1.png)](/docs/assets/770-nodebalancer-tab.png) + [![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) + [![The NodeBalancer has been added.](/docs/assets/797-2.png)](/docs/assets/772-nodebalancer-added.png) 3. Now choose **Create Configuration**. A NodeBalancer is configured using ports, and let's say our example web application uses only one: port 80 for regular HTTP traffic. - [![Adding a port configuration to a NodeBalancer.](/docs/assets/798-3.png)](/docs/assets/774-add-port.png) + [![Adding a port configuration to a NodeBalancer.](/docs/assets/798-3.png)](/docs/assets/774-add-port.png) - **HTTP** + **HTTP** - For the traditional web application, the settings in the screenshot above are a good start. HTTP cookie stickiness is preferred so that the same client will always land on the same backend -- for a simple web application that keeps sessions in memory, this is necessary to avoid session errors on clients. + For the traditional web application, the settings in the screenshot above are a good start. HTTP cookie stickiness is preferred so that the same client will always land on the same backend -- for a simple web application that keeps sessions in memory, this is necessary to avoid session errors on clients. - **HTTPS** + **HTTPS** - If you select the HTTPS protocol, two new fields will appear where you can add your SSL certificate, chained certificates (if applicable) and a private key (which must not have passphrase protection). + If you select the HTTPS protocol, two new fields will appear where you can add your SSL certificate, chained certificates (if applicable) and a private key (which must not have passphrase protection). - Once you have configured your certificates, you must then choose a general security and compatibility level for your NodeBalancer's TLS cipher suite pools. If you must support users accessing your application with older browsers such as Internet Explorer 6-8, you can select the **Legacy** option. However, bear in mind that by gaining backwards compatibility, your NodeBalancer will use weaker SSL/TLS cipher suites. + Once you have configured your certificates, you must then choose a general security and compatibility level for your NodeBalancer's TLS cipher suite pools. If you must support users accessing your application with older browsers such as Internet Explorer 6-8, you can select the **Legacy** option. However, bear in mind that by gaining backwards compatibility, your NodeBalancer will use weaker SSL/TLS cipher suites. - For all other implementations, the default **Recommended** cipher suite option should be used. You can see the cipher suites available with each option in our [NodeBalancer Reference Guide](/docs/platform/nodebalancer/nodebalancer-reference-guide#tls-cipher-suites). + For all other implementations, the default **Recommended** cipher suite option should be used. You can see the cipher suites available with each option in our [NodeBalancer Reference Guide](/docs/platform/nodebalancer/nodebalancer-reference-guide#tls-cipher-suites). - [![SSL Cipher Suite](/docs/assets/ssl-cipher-suite-resized.png)](/docs/assets/ssl-cipher-suite.png) + [![SSL Cipher Suite](/docs/assets/ssl-cipher-suite-resized.png)](/docs/assets/ssl-cipher-suite.png) Every ten seconds, NodeBalancer will request the root of the web application and look for a valid response code. With our example setup, there is only one backend node (which we will add shortly); if the backend goes down, NodeBalancer will serve a plain 503 Service Unavailable error page. This is more desirable than refusing connections or making browsers wait for a timeout. @@ -75,17 +75,17 @@ Every ten seconds, NodeBalancer will request the root of the web application and 1. Now we must add the single backend node to the NodeBalancer's configuration. Point this at the private IP address of your web server Linode. - [![Adding a backend node to a NodeBalancer.](/docs/assets/799-4.png)](/docs/assets/776-backend.png) + [![Adding a backend node to a NodeBalancer.](/docs/assets/799-4.png)](/docs/assets/776-backend.png) - These configuration changes will take a few moments to be reflected by your NodeBalancer. If everything is configured on your backend correctly, once the changes have gone through, the **Status** column will update from **Unknown** to **UP**. + These configuration changes will take a few moments to be reflected by your NodeBalancer. If everything is configured on your backend correctly, once the changes have gone through, the **Status** column will update from **Unknown** to **UP**. - [![The backend node has been added, and is now status UP.](/docs/assets/800-5.png)](/docs/assets/778-backend-up.png) + [![The backend node has been added, and is now status UP.](/docs/assets/800-5.png)](/docs/assets/778-backend-up.png) - If the backend status reports **DOWN**, check to make sure that your web application is configured to respond on the Linode's private IP address. There might be a virtual host mismatch as well -- check the notes in the next section. + If the backend status reports **DOWN**, check to make sure that your web application is configured to respond on the Linode's private IP address. There might be a virtual host mismatch as well -- check the notes in the next section. 2. Now that the backend is up, go directly to your NodeBalancer's IP address in a browser. You should see your web application as the NodeBalancer proxies the traffic through. - [![Viewing the NodeBalancer-driven web site in a browser.](/docs/assets/801-6.png)](/docs/assets/780-success.png) + [![Viewing the NodeBalancer-driven web site in a browser.](/docs/assets/801-6.png)](/docs/assets/780-success.png) ### A Note about Virtual Hosts @@ -107,11 +107,11 @@ Once you are satisfied that NodeBalancer is working normally, you can switch you 2. Edit or create an A record for `www.example.org`, pointing to your NodeBalancer's IP address. - [![Adding an A Record.](/docs/assets/nodebalancer-a-record_small.png)](/docs/assets/nodebalancer-a-record.png) + [![Adding an A Record.](/docs/assets/nodebalancer-a-record_small.png)](/docs/assets/nodebalancer-a-record.png) - Also add an AAAA record for the IPv6 address. + Also add an AAAA record for the IPv6 address. - [![Adding an AAAA record for the NodeBalancer.](/docs/assets/804-9.png)](/docs/assets/786-dns-aaaa.png) + [![Adding an AAAA record for the NodeBalancer.](/docs/assets/804-9.png)](/docs/assets/786-dns-aaaa.png) Once the DNS changes propagate, traffic will begin flowing through the NodeBalancer. At this point, you will want to wait at least 24 hours for all caches to catch up to the NodeBalancer before proceeding. @@ -123,4 +123,4 @@ On another Linode, make an exact copy of your current web server. The Linode bac Once the configuration is sent to the backend, users will be transparently balanced over the two Linodes and each will be monitored for health. This configuration is very easy to work with, as upgrades can be rolled out to each backend without disrupting service and backends can be taken in and out of rotation at will. -This is just the beginning; NodeBalancers are extremely flexible and cater to a lot of needs. From here, the API can be used to add many backends. Multiple ports on one backend can be balanced for speciality setups. Additionally, new tools like *memcached* can be introduced to the application to allow session stickiness to become irrelevant. +This is just the beginning; NodeBalancers are extremely flexible and cater to a lot of needs. From here, the API can be used to add many backends. Multiple ports on one backend can be balanced for complex setups. Additionally, new tools like *memcached* can be introduced to the application to allow session stickiness to become irrelevant. 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/platform/nodebalancer/nodebalancer-ssl-configuration.md b/docs/platform/nodebalancer/nodebalancer-ssl-configuration.md index ca31475b64b..7baa4bed042 100644 --- a/docs/platform/nodebalancer/nodebalancer-ssl-configuration.md +++ b/docs/platform/nodebalancer/nodebalancer-ssl-configuration.md @@ -162,7 +162,7 @@ server { In the above configuration, be sure to replace the values of `server_name` and `root` with your actual domain and document root, respectively. -2. Your configuration should now be complete. After reloading your web server, all requests made to your website that are not sent to port 443 should be redirected back to your Nodebalancer on a secure connection with SSL/TLS. +2. Your configuration should now be complete. After reloading your web server, all requests made to your website that are not sent to port 443 should be redirected back to your NodeBalancer on a secure connection with SSL/TLS. ## Tips for Troubleshooting 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/quick-answers/linux/compress-files-using-the-command-line.md b/docs/quick-answers/linux/compress-files-using-the-command-line.md new file mode 100644 index 00000000000..5da282ce657 --- /dev/null +++ b/docs/quick-answers/linux/compress-files-using-the-command-line.md @@ -0,0 +1,93 @@ +--- +author: + name: Angel Guarisma + email: docs@linode.com +description: 'Tar, is a GNU utility that provides the ability to create tar archives, extract and compress files.' +og_description: 'This guide will detail how to compress and extract files using tar on the Unix filesystem' +keywords: ["tar", "star", "GNU-Tar", "cryptocurrency"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-02-01 +modified: 2018-02-01 +modified_by: + name: Linode +title: 'Archive, Compress, and Extract Files in Linux Using the Command Line' +--- + +`tar` and `gzip` provide a standard interface for creating archives and compressing files on Linux. These utilities take a large number of files, save them together in an archive, and compresses the archive to save space. `tar` does not compress files by itself. Used in conjunction with `gzip`, an archived file can be compressed to reduce disk space. The resulting archived file has the file extension, `tar.gz` and is sometimes called a "tarball". + +## Archive a Directory + +1. Make a directory on your system and create a text file: + + mkdir testdir && touch testdir/example.txt + +2. Use `tar` to archive the directory: + + tar -cvf testdir.tar testdir/ + +3. Check for the newly archived file: + + ls + + {{< output >}} +tesdir testdir.tar +{{< /output >}} + +## Compression with gzip + +1. Compress the file using `gzip`: + + gzip testdir.tar + +2. Checking for the file will show: + + ls + + {{< output >}} +testdir testdir.tar.gz +{{< /output >}} + +3. The chained file extension (`.tar.gz`) indicates that this is a compressed archive. You can see the difference in size between the two files: + + ls -l --block-size=KB + + {{< output >}} +total 9kB +drwxrwxr-x 2 linode linode 5kB Jan 30 13:13 testdir +-rw-rw-r-- 1 linode linode 1kB Jan 30 13:29 testdir.tar.gz +{{}} + +## Extract a Tarball + +Extract the directory: + + tar -xzvf testdir.tar.gz + +{{< output >}} +testdir/ +testdir/test.txt +{{}} + +The flags used in these example stand for: + +* `-c`: Create a new archive in the form of a `tar` file. +* `-v`: Verbose flag, outputs a log after running the command. +* `-z`: Zips or unzips using `gzip`. +* `-x`: Extract a file from the archive. +* `-f`: Define STDOUT as the filename, or uses the next parameter. + +## Common Options for Archiving + +Additional flags used with the `tar` command are: + +|Flag |Function | +|-------|-----------------------------------------------------------| +|-A |Append tar files to an existing archive. | +|-d |Show differences between an archive and a local filesystem.| +|-delete|Delete from the archive. | +|-r |Append files to the end of an archive. | +|-t |List the contents of an archive. | +|-u |Append but don't overwrite the current archive. | + +These are the basics for working within the command line. Be sure to check the man pages `man tar` for a more detailed listing of possible flags when compressing and extracting files. + diff --git a/docs/quick-answers/linux/how-to-change-selinux-modes.md b/docs/quick-answers/linux/how-to-change-selinux-modes.md index 65c3693fbe3..fdbd689278b 100644 --- a/docs/quick-answers/linux/how-to-change-selinux-modes.md +++ b/docs/quick-answers/linux/how-to-change-selinux-modes.md @@ -16,7 +16,7 @@ external_resources: - '[SELinux, CentOS Wiki](https://wiki.centos.org/HowTos/SELinux)' --- -[Security Enhanced Linux](https://selinuxproject.org/page/Main_Page) is a Linux security module for [mandatory](https://en.wikipedia.org/wiki/Mandatory_access_control) or [role-baed](https://wiki.centos.org/HowTos/SELinux#head-91a597b2b6f140484d62d59a0b9a1dfea4dffc50) access control. SELinux is packaged with CentOS and Fedora by default, and can be running in one of three [modes](https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security-Enhanced_Linux/sect-Security-Enhanced_Linux-Introduction-SELinux_Modes.html): *disabled*, *permissive* or *enforcing*. +[Security Enhanced Linux](https://selinuxproject.org/page/Main_Page) is a Linux security module for [mandatory](https://en.wikipedia.org/wiki/Mandatory_access_control) or [role-based](https://wiki.centos.org/HowTos/SELinux#head-91a597b2b6f140484d62d59a0b9a1dfea4dffc50) access control. SELinux is packaged with CentOS and Fedora by default, and can be running in one of three [modes](https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security-Enhanced_Linux/sect-Security-Enhanced_Linux-Introduction-SELinux_Modes.html): *disabled*, *permissive* or *enforcing*. Ideally, you want to keep SELinux in enforcing mode, but there may be times when you need to set it to permissive mode, or disable it altogether. Note that the *disabled* state means the daemon is still running and is still enforcing rules for [discretionary access control](https://en.wikipedia.org/wiki/Discretionary_access_control), however no MAC security policies are being used, and no violations are being logged. diff --git a/docs/quick-answers/linux/how-to-install-configure-and-run-fish.md b/docs/quick-answers/linux/how-to-install-configure-and-run-fish.md index 54b2c682807..0152a8d653e 100644 --- a/docs/quick-answers/linux/how-to-install-configure-and-run-fish.md +++ b/docs/quick-answers/linux/how-to-install-configure-and-run-fish.md @@ -9,7 +9,7 @@ published: 2017-07-18 modified: 2017-07-18 modified_by: name: Linode -title: 'How to Install, Configure and Run The Fish Shell' +title: 'How to Install, Configure and Run the Fish Shell' external_resources: - '[Fish Shell](https://fishshell.com/)' - '[Fish Shell Tutorial](https://geowarin.github.io/the-missing-fish-shell-tutorial.html)' @@ -17,7 +17,7 @@ external_resources: - '[Fish Cookbook](https://github.com/jbucaran/fish-shell-cookbook#how-to-find-my-current-location-in-fish)' --- -![fish_banner](/docs/assets/fish/fish_banner.jpg) +![How to Install, Configure, and Run the Fish Shell](/docs/assets/fish/fish_banner.jpg) Fish, the Friendly Interactive Shell, is a replacement shell, which, out of the box, offers auto-suggestions; programmable completions based on installed man pages; a fully functional, readable, scripting language; and colored text support. @@ -26,35 +26,35 @@ Fish, the Friendly Interactive Shell, is a replacement shell, which, out of the Install Fish using your distro's package manager: - apt install fish + apt install fish Start the Fish shell with the `fish` command: - root@localhost:~# fish - Welcome to fish, the friendly interactive shell + root@localhost:~# fish + Welcome to fish, the friendly interactive shell ### Customize Fish The configuration file for Fish is located at: `~/.config/fish/config.fish`. You can write commands or Fish functions to this file. The `fish_config` command, will load a customization server on the browser: -![fish_config](/docs/assets/fish/fish_config.png) +![Customized Fish Shell Configuration File](/docs/assets/fish/fish_config.png) ## Regarding Fish Fish is similar to other shells: you type commands followed by arguments. - root@localhost ~# adduser Linode - Adding user `Linode' ... - Adding new group `Linode' (1001) ... - Adding new user `Linode' (1001) with group `Linode' ... - Creating home directory `/home/Linode' ... + root@localhost ~# adduser Linode + Adding user `Linode' ... + Adding new group `Linode' (1001) ... + Adding new user `Linode' (1001) with group `Linode' ... + Creating home directory `/home/Linode' ... However, in Fish, you chain commands with `;`, instead of `&&`: - root@localhost ~# mkdir FishDocs && cd FishDocs - Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'. - fish: mkdir FishDocs && cd FishDocs - ^ + root@localhost ~# mkdir FishDocs && cd FishDocs + Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'. + fish: mkdir FishDocs && cd FishDocs + ^ If you can't function without `!!` and `&&`, check [this](https://github.com/fish-shell/fish-shell/wiki/Bash-Refugees) repo out for a solution. @@ -68,23 +68,23 @@ Fish boasts a full-featured scripting language. You can use scripts written in F Fish does not support aliasing. Instead Fish uses `functions`. Typing `functions` into Fish will output a list of functions that exist by default: - root@localhost ~/.c/fish# functions - ., N_, abbr, alias, cd, contains_seq, delete-or-exit, dirh, dirs, - down-or-search, eval, export, fish_config, fish_default_key_bindings, - fish_indent, fish_mode_prompt, fish_prompt, fish_sigtrap_handler, - fish_update_completions, fish_vi_cursor, fish_vi_key_bindings, fish_vi_mode, - funced, funcsave, grep, help, history, hostname, isatty, la, ll, ls, man, math, - mimedb, nextd, nextd-or-forward-word, open, popd, prevd, prevd-or-backward-word, - prompt_pwd, psub, pushd, seq, setenv, sgrep, trap, type, umask, up-or-search, - vared, + root@localhost ~/.c/fish# functions + ., N_, abbr, alias, cd, contains_seq, delete-or-exit, dirh, dirs, + down-or-search, eval, export, fish_config, fish_default_key_bindings, + fish_indent, fish_mode_prompt, fish_prompt, fish_sigtrap_handler, + fish_update_completions, fish_vi_cursor, fish_vi_key_bindings, fish_vi_mode, + funced, funcsave, grep, help, history, hostname, isatty, la, ll, ls, man, math, + mimedb, nextd, nextd-or-forward-word, open, popd, prevd, prevd-or-backward-word, + prompt_pwd, psub, pushd, seq, setenv, sgrep, trap, type, umask, up-or-search, + vared, You can begin writing your own functions by using the syntax: `functions name` -![fish_functions](/docs/assets/fish/fish_functions.png) +![Fish Scripting Using Functions](/docs/assets/fish/fish_functions.png) You can write for loops on the fly with Fish: -![fish_for](/docs/assets/fish/fish_for.png) +![Loops in the Fish Shell](/docs/assets/fish/fish_for.png) You can learn more about Fish scripting in the official [tutorial](https://fishshell.com/docs/current/tutorial.html). @@ -93,10 +93,10 @@ If you are a long time bash user, you may have accumulated an abundance of bash For example, if you have a script that prints numbers 1-10: - for ((k=1; k<=10; ++k)); do echo $k; done - Expected keyword 'in', but instead found end of the statement - fish: for ((k=1; k<=10; ++k)); do echo $k; done - ^ + for ((k=1; k<=10; ++k)); do echo $k; done + Expected keyword 'in', but instead found end of the statement + fish: for ((k=1; k<=10; ++k)); do echo $k; done + ^ Using `bash -c`, you can take that same script as a string and run it without exiting Fish. @@ -107,8 +107,8 @@ Using `bash -c`, you can take that same script as a string and run it without ex The best way to learn Fish is to use it. Fish is designed with **The Law Of Discoverability** in mind: - A program should be designed to make its features as easy as possible to discover for the user. - Rationale: A program whose features are discoverable turns a new user into an expert in a shorter span of time, - since the user will become an expert on the program simply by using it. + A program should be designed to make its features as easy as possible to discover for the user. + Rationale: A program whose features are discoverable turns a new user into an expert in a shorter span of time, + since the user will become an expert on the program simply by using it. Follow the links in the More Information section to quickly explore the power and functionality of Fish. diff --git a/docs/security/advanced-ssh-server-security.md b/docs/security/advanced-ssh-server-security.md index 322447f9e83..89ee59f07c2 100644 --- a/docs/security/advanced-ssh-server-security.md +++ b/docs/security/advanced-ssh-server-security.md @@ -89,7 +89,7 @@ There are four directives available executed in sequential order: `DenyGroups`: similar to `DenyUsers`, any user who belongs to this group(s) is blocked. `AllowGroups`: only users part of this group(s) can access the SSH service. -The default behavior of SSH is to allow *any* user to log in to the server, but this can be changed by adding access control directives to your `/etc/ssh/sshd_config` file. The following examples shows how to filter who can access the service: +The default behavior of SSH is to allow *any* user to log in to the server, but this can be changed by adding access control directives to your `/etc/ssh/sshd_config` file. The following examples show how to filter who can access the service: ### Selectively Deny Users @@ -197,7 +197,7 @@ ChrootDirectory /home/chroot/restricted-user sudo systemctl restart sshd -Keep in mind that our restricted user can't use any command or binary that is not manually installed in its jail environment. The complete process to setup a user for specific tasks is overwhelming but has the advantage that anything outside the jail is protected in the event that the user is compromised. +Keep in mind that our restricted user can't use any command or binary that is not manually installed in its jail environment. The complete process to set up a user for specific tasks is overwhelming but has the advantage that anything outside the jail is protected in the event that the user is compromised. ## Regularly Update your Revoked Keys List diff --git a/docs/security/authentication/gpg-key-for-ssh-authentication.md b/docs/security/authentication/gpg-key-for-ssh-authentication.md index 27cff9b0ea6..dd6d5f59ab1 100644 --- a/docs/security/authentication/gpg-key-for-ssh-authentication.md +++ b/docs/security/authentication/gpg-key-for-ssh-authentication.md @@ -284,7 +284,7 @@ You can reimport it with the ever-handy `gpg2 --import key-file` command. ## Move Your Key to a Smartcard or YubiKey (Optional) {{< note >}} -If you're using a brand new YubiKey, you'll need to enable OpenPGP Card / CCID Mode first. This can be done through the YubiKey Personlisation Tool, or by running `ykpersonalise -m82`. `ykpersonalise` can be installed through your package manager. +If you're using a brand new YubiKey, you'll need to enable OpenPGP Card / CCID Mode first. This can be done through the YubiKey Personalization Tool, or by running `ykpersonalise -m82`. `ykpersonalise` can be installed through your package manager. {{< /note >}} ### Secure Your Card diff --git a/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication.md b/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication.md index 8ec41c70f9e..e9a0049cd6f 100644 --- a/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication.md +++ b/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication.md @@ -111,7 +111,7 @@ user4:vvddhfjjasui:vvfjidkflssd {{< /file >}} -5. Add `auth required pam_yubico.so id=client id authfile=/etc/ssh/yubikeys` to the start of `/etc/pam.d/sshd`. Replace `client id` with the ID you retrieved when applying for an API key, and `secret key` with the secret key. If you only want single-factor authentication (either a YubiKey or a password), change `required` to `sufficient` to tell the system that a valid YubiKey will be enough to log in. +5. Add `auth required pam_yubico.so id= key= authfile=/etc/ssh/yubikeys` to the start of `/etc/pam.d/sshd`. Replace `` with the ID you retrieved when applying for an API key, and `` with the secret key. If you only want single-factor authentication (either a YubiKey or a password), change `required` to `sufficient` to tell the system that a valid YubiKey will be enough to log in. {{< file-excerpt "/etc/pam.d/sshd" >}} # PAM configuration for the Secure Shell service diff --git a/docs/security/authentication/use-public-key-authentication-with-ssh.md b/docs/security/authentication/use-public-key-authentication-with-ssh.md index d56a733e194..68b68576c3f 100644 --- a/docs/security/authentication/use-public-key-authentication-with-ssh.md +++ b/docs/security/authentication/use-public-key-authentication-with-ssh.md @@ -47,15 +47,15 @@ If you accidentally lock yourself out of your Linode this way, you can use [Lish ssh-keygen - **Optional:** to increase the security of your key, increase the size with the `-b` flag. The minimum value is 768 bytes and the default, if you do not use the flag, is 2048 bytes. We recommend a 4096 byte key: + **Optional:** to increase the security of your key, increase the size with the `-b` flag. The minimum value is 768 bytes and the default, if you do not use the flag, is 2048 bytes. We recommend a 4096 byte key: - ssh-keygen -b 4096 + ssh-keygen -b 4096 2. Answer all questions when prompted. You can accept the defaults for everything except the passphrase. When you get to the passphrase question, enter a series of letters and numbers for the passphrase twice; once to enter the new passphrase and once to confirm. - **Important:** make a note of your passphrase, as you will need it later. + **Important:** make a note of your passphrase, as you will need it later. - You may accept the defaults for the other questions by pressing *Return* when prompted: + You may accept the defaults for the other questions by pressing *Return* when prompted: user@linode: ssh-keygen -b 4096 Generating public/private rsa key pair. @@ -81,7 +81,7 @@ Please note that the following steps are performed on your remote location/Linod mkdir .ssh - The following steps are performed on your local machine/PC: + The following steps are performed on your local machine/PC: 3. Copy the *public key* into the `~/.ssh/authorized_keys` file on the **remote machine**, using the following command. Substitute your own SSH user and host names: @@ -135,7 +135,7 @@ When PuTTYgen has finished downloading, it can be run immediately, without insta 6. Before you continue, you will need to copy the newly-created public key to Notepad. Just select the text and copy it to a new text file. Be sure the file is saved in a location you remember, as you will need it later. - ![Copy the public key to a text file.](/docs/assets/1476-key-txt-file.png) + ![Copy the public key to a text file](/docs/assets/1476-key-txt-file.png) {{< caution >}} When saving the public key, make sure you save it in a plaintext format such as .txt. Other file formats such as .rtf and .doc may add extra characters to the key through encoding, which may prevent your keypair from matching. The public key should be a single line, with no breaks. @@ -143,11 +143,11 @@ When saving the public key, make sure you save it in a plaintext format such as 7. Enter a passphrase in the **Key passphrase** text field, and enter it again to confirm. The passphrase can be any string of letters and numbers. The passphrase should be something unique and not easily recognized. **Important:** make a note of your passphrase, as you will need it later. - ![Enter a new passphrase.](/docs/assets/1465-new-passphrase.png) + ![Enter a new passphrase](docs/assets/1465-new-passphrase.png) 8. After you have entered your passphrase, click on the **Save private key** button. This will save the private key to your PC. - ![Click on the Save private key button.](/docs/assets/1472-private-key-button.png) + ![Click on the Save private key button](/docs/assets/1472-private-key-button.png) 9. Keep the default location and name of the private key file and click on the **Save** button. Note that if you plan on creating multiple keys to connect to different SSH servers, you will need to save each pair of keys for each server with different names to prevent overwriting the key files. Make a note of the name and location of the private key. You'll need it in the next section. 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/encrypt-data-disk-with-dm-crypt.md b/docs/security/encrypt-data-disk-with-dm-crypt.md index 88a68298d6e..98f7adcf07c 100644 --- a/docs/security/encrypt-data-disk-with-dm-crypt.md +++ b/docs/security/encrypt-data-disk-with-dm-crypt.md @@ -34,7 +34,7 @@ The steps in this guide require root privileges. Be sure to run the steps below ![Debian Allocation](/docs/assets/dm-crypt/debian_allocation.png) -2. Go to the Linode manager dashboard, create a new disk and select **unformatted / raw** under **Type**: +2. Go to the Linode Manager dashboard, create a new disk and select **unformatted / raw** under **Type**: ![Data Disk](/docs/assets/dm-crypt/data_disk.png) diff --git a/docs/security/firewalls/configure-firewall-with-ufw.md b/docs/security/firewalls/configure-firewall-with-ufw.md index 6eafd57736a..8227a1e38fd 100644 --- a/docs/security/firewalls/configure-firewall-with-ufw.md +++ b/docs/security/firewalls/configure-firewall-with-ufw.md @@ -12,6 +12,8 @@ published: 2015-11-17 title: How to Configure a Firewall with UFW --- +## What is UFW? + UFW, or *uncomplicated firewall*, is a frontend for managing firewall rules in Arch Linux, Debian or Ubuntu. UFW is used through the command line (although it has GUIs available), and aims to make firewall configuration easy (or, uncomplicated). ![How to Configure a Firewall with UFW](/docs/assets/ufw_tg.png "How to Configure a Firewall with UFW") @@ -20,7 +22,7 @@ UFW, or *uncomplicated firewall*, is a frontend for managing firewall rules in A 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) guide to create a standard user account, harden SSH access and remove unnecessary network services. Do **not** follow the Creating a Firewall section--this guide is an introduction to using UFW, which is a separate method of controlling a firewall than iptables commands. +2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server/) guide to create a standard user account, harden SSH access and remove unnecessary network services. Do **not** follow the Creating a Firewall section--this guide is an introduction to using UFW, which is a separate method of controlling a firewall than iptables commands. 3. Update your system. diff --git a/docs/security/firewalls/control-network-traffic-with-iptables.md b/docs/security/firewalls/control-network-traffic-with-iptables.md index f0d18f862c0..cec20ac9c95 100644 --- a/docs/security/firewalls/control-network-traffic-with-iptables.md +++ b/docs/security/firewalls/control-network-traffic-with-iptables.md @@ -335,7 +335,7 @@ COMMIT {{< /file >}} -**Optional:** If you plan to use [Linode Longview](/docs/platform/longview/longview) or [Linode's NodeBalancers](/docs/platform/nodebalancer/getting-started-with-nodebalancers), add the respective rule after the section for allowing HTTP and HTTPS connections: +**Optional:** If you plan to use [Linode Longview](/docs/platform/longview/longview/) or [Linode's NodeBalancers](/docs/platform/nodebalancer/getting-started-with-nodebalancers/), add the respective rule after the section for allowing HTTP and HTTPS connections: # Allow incoming Longview connections from longview.linode.com -A INPUT -s 96.126.119.66 -m state --state NEW -j ACCEPT @@ -621,7 +621,7 @@ To verify the rules are applied and available after the system reboot use the co ## Network Lock-out -When you're applying network rules, especially with both IPv4 and IPv6 and multiple interfaces, it is easy to lock yourself out. In the event you apply the rule and are unable to access your server, you may gain access through [Lish](https://www.linode.com/docs/networking/using-the-linode-shell-lish) in the Linode Manager. The following steps will guide you through using the GUI interface of your Linode to gain access to your server: +When you're applying network rules, especially with both IPv4 and IPv6 and multiple interfaces, it is easy to lock yourself out. In the event you apply the rule and are unable to access your server, you may gain access through [Lish](https://www.linode.com/docs/networking/using-the-linode-shell-lish) in the Linode Manager. The following steps will guide you through using the graphical interface of your Linode to gain access to your server: 1. Connect to your Linode Manager. 2. Click on the Remote Access tab. diff --git a/docs/security/getting-started-with-selinux.md b/docs/security/getting-started-with-selinux.md index ae3334098a4..4fd3f5d910f 100644 --- a/docs/security/getting-started-with-selinux.md +++ b/docs/security/getting-started-with-selinux.md @@ -17,14 +17,14 @@ external_resources: - '[CentOS SELinux Wiki](https://wiki.centos.org/HowTos/SELinux)' --- -![SELinuxbanner](/docs/assets/selinux/selinux_centos.jpg) +![Getting Started withj SELinux](/docs/assets/selinux/selinux_centos.jpg) SELinux is a Mandatory Access Control (MAC) system, developed by the NSA. SELinux was developed as a replacement for Discretionary Access Control (DAC) that ships with most Linux distributions. The difference between Discretionary Access Controls and Mandatory Access Controls is the means by which users and applications gain access to machines. Traditionally, the command `sudo` gives a user the ability to heighten permissions to `root`-level. Root access on a DAC system gives the person or program with root access permission to perform as desired on a machine. -Ideally, the person with root access should be trusted with it. But if security has been compromised, so too has the system. SELinux and MACs resolve this issue by both confining privleged proccesses and automating security policy creation. +Ideally, the person with root access should be trusted with it. But if security has been compromised, so too has the system. SELinux and MACs resolve this issue by both confining privileged processes and automating security policy creation. SELinux defaults to denying anything that is not explicitly allowed. SELinux has global modes, `permissive` and `enforcing`. `Permissive` mode allows the system to function like a Discretionary Access Control system, while logging every violation to SELinux. The `enforcing` mode enforces a strict denial of access to anything that isn't explicitly allowed. To explicitly allow certain behavior on a machine, you, as the system administrator, have to write policies that allow it. @@ -45,20 +45,20 @@ We do not recommend you disable SELinux. But if you wish to disable SELinux, ple On CentOS 7 most of the SELinux packages are installed by default. Look to see what packages are installed: - rpm -aq | grep selinux + rpm -aq | grep selinux If you are dealing with a freshly installed CentOS 7 Linode, your output should be: - [root@centos ~]# rpm -aq | grep selinux - libselinux-utils-2.5-6.el7.x86_64 - libselinux-2.5-6.el7.x86_64 - libselinux-python-2.5-6.el7.x86_64 - selinux-policy-3.13.1-102.el7_3.16.noarch - selinux-policy-targeted-3.13.1-102.el7_3.16.noarch + [root@centos ~]# rpm -aq | grep selinux + libselinux-utils-2.5-6.el7.x86_64 + libselinux-2.5-6.el7.x86_64 + libselinux-python-2.5-6.el7.x86_64 + selinux-policy-3.13.1-102.el7_3.16.noarch + selinux-policy-targeted-3.13.1-102.el7_3.16.noarch Install the following packages and their associated dependencies: - yum install policycoreutils policycoreutils-python selinux-policy selinux-policy-targeted libselinux-utils setools setools-console + yum install policycoreutils policycoreutils-python selinux-policy selinux-policy-targeted libselinux-utils setools setools-console Optionally, install `setroubleshoot-server` and `mctrans`. The `setroubleshoot-server` allows, among many other things, for email notifications to be sent from the server to notify you of any policy violations. The `mctrans` daemon translates the output of SELinux to human readable text. @@ -71,60 +71,60 @@ SELinux has two modes: `Enforcing` and `Permissive`: You can check what mode your system is in by running the `getenforce` command: - [root@centos ~ ]# getenforce - Enforcing + [root@centos ~ ]# getenforce + Enforcing You can also retrieve even more information using `sestatus`: - [root@centos ~]# sestatus - SELinux status: enabled - SELinuxfs mount: /sys/fs/selinux - SELinux root directory: /etc/selinux - Loaded policy name: targeted - Current mode: enforcing - Mode from config file: permissive - Policy MLS status: enabled - Policy deny_unknown status: allowed - Max kernel policy version: 28 + [root@centos ~]# sestatus + SELinux status: enabled + SELinuxfs mount: /sys/fs/selinux + SELinux root directory: /etc/selinux + Loaded policy name: targeted + Current mode: enforcing + Mode from config file: permissive + Policy MLS status: enabled + Policy deny_unknown status: allowed + Max kernel policy version: 28 You have to set SELinux to `permissive`, so that you can create policies on your system for SELinux to enforce. After changing SELinux's mode, you have to reboot your system. - [root@centos ~]# setenforce 0 - [root@centos ~]# getenforce - Permissive - [root@centos ~]# reboot + [root@centos ~]# setenforce 0 + [root@centos ~]# getenforce + Permissive + [root@centos ~]# reboot Now that SELinux is set to `Permissive`, you can see the log of privacy violations by using: - grep "selinux" /var/log/messages + grep "selinux" /var/log/messages The output will look very similar to this: - [root@centos ~]# grep "selinux" /var/log/messages - Jun 26 12:27:16 li482-93 yum[4572]: Updated: selinux-policy-3.13.1-102.el7_3.16.noarch - Jun 26 12:27:38 li482-93 yum[4572]: Updated: selinux-policy-targeted-3.13.1-102.el7_3.16.noarch - Jun 26 16:38:15 li482-93 systemd: Removed slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. - Jun 26 16:38:15 li482-93 systemd: Stopping system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. - Jun 26 16:54:46 li482-93 systemd: Removed slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. - Jun 26 16:54:46 li482-93 systemd: Stopping system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. - Jun 26 16:55:45 li482-93 kernel: EVM: security.selinux - Jun 26 17:33:43 li482-93 kernel: EVM: security.selinux - Jun 26 17:36:21 li482-93 kernel: EVM: security.selinux + [root@centos ~]# grep "selinux" /var/log/messages + Jun 26 12:27:16 li482-93 yum[4572]: Updated: selinux-policy-3.13.1-102.el7_3.16.noarch + Jun 26 12:27:38 li482-93 yum[4572]: Updated: selinux-policy-targeted-3.13.1-102.el7_3.16.noarch + Jun 26 16:38:15 li482-93 systemd: Removed slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. + Jun 26 16:38:15 li482-93 systemd: Stopping system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. + Jun 26 16:54:46 li482-93 systemd: Removed slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. + Jun 26 16:54:46 li482-93 systemd: Stopping system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice. + Jun 26 16:55:45 li482-93 kernel: EVM: security.selinux + Jun 26 17:33:43 li482-93 kernel: EVM: security.selinux + Jun 26 17:36:21 li482-93 kernel: EVM: security.selinux The file that contains the security states of the system is located at `/etc/selinux/config`, you can edit that file to change the state of the system. - vi /etc/selinux/config - # This file controls the state of SELinux on the system. - # SELINUX= can take one of these three values: - # enforcing - SELinux security policy is enforced. - # permissive - SELinux prints warnings instead of enforcing. - # disabled - No SELinux policy is loaded. - SELINUX=permissive - # SELINUXTYPE= can take one of three two values: - # targeted - Targeted processes are protected, - # minimum - Modification of targeted policy. Only selected processes are protected. - # mls - Multi Level Security protection. - SELINUXTYPE=targeted + vi /etc/selinux/config + # This file controls the state of SELinux on the system. + # SELINUX= can take one of these three values: + # enforcing - SELinux security policy is enforced. + # permissive - SELinux prints warnings instead of enforcing. + # disabled - No SELinux policy is loaded. + SELINUX=permissive + # SELINUXTYPE= can take one of three two values: + # targeted - Targeted processes are protected, + # minimum - Modification of targeted policy. Only selected processes are protected. + # mls - Multi Level Security protection. + SELINUXTYPE=targeted The uncommented lines can be changed to any state. After changing the state of SELinux, `reboot` the machine for the changes to take effect. @@ -133,11 +133,11 @@ The uncommented lines can be changed to any state. After changing the state of S Before switching to the `enforce` state in SELinux, you have to understand contexts, as they pertain to SELinux. - [root@centos ~]# useradd user - [root@centos ~]# su user - [user@centos ~]$ cd ~/ && mkdir test - [user@centos ~]$ ls -Z - drwxrwxr-x. user user unconfined_u:object_r:user_home_t:s0 test + [root@centos ~]# useradd user + [root@centos ~]# su user + [user@centos ~]$ cd ~/ && mkdir test + [user@centos ~]$ ls -Z + drwxrwxr-x. user user unconfined_u:object_r:user_home_t:s0 test The output of `ls -Z` may look familiar, but the `-Z` context flag prints out the SELinux security context of any file. @@ -149,31 +149,31 @@ SELinux marks every single object on a machine with a *context*. That means ever An SELinux Boolean is a variable that can be toggled on and off without needing to reload or recompile an SELinux polcy. You can view the list of boolean variables using the `getsebool -a` command. It's a long list, so you can pipe it through `grep` to narrow down the results: - [root@centos ~]# getsebool -a | grep xdm - xdm_bind_vnc_tcp_port --> off - xdm_exec_bootloader --> off - xdm_sysadm_login --> off - xdm_write_home --> off + [root@centos ~]# getsebool -a | grep xdm + xdm_bind_vnc_tcp_port --> off + xdm_exec_bootloader --> off + xdm_sysadm_login --> off + xdm_write_home --> off You can change the value of any variable using the `setsebool` command. If you set the `-P` flag, the setting will persist through reboots. If you want to permit a service like [openVPN](https://www.linode.com/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server) to run unconfined in your system, you have to edit the policies boolean variable: - [root@centos ~]# getsebool -a | grep "vpn" - openvpn_can_network_connect --> on - openvpn_enable_homedirs --> on - openvpn_run_unconfined --> off + [root@centos ~]# getsebool -a | grep "vpn" + openvpn_can_network_connect --> on + openvpn_enable_homedirs --> on + openvpn_run_unconfined --> off - [root@centos ~]# setsebool -P openvpn_run_unconfined ON + [root@centos ~]# setsebool -P openvpn_run_unconfined ON - [root@centos ~]# getsebool -a | grep "vpn" - openvpn_can_network_connect --> on - openvpn_enable_homedirs --> on - openvpn_run_unconfined --> on + [root@centos ~]# getsebool -a | grep "vpn" + openvpn_can_network_connect --> on + openvpn_enable_homedirs --> on + openvpn_run_unconfined --> on Now, you are able to use OpenVPN **unconfined** or in **permissive** mode on your system, even if it is actively in **enforcing** mode. Set your system to `enforce`, and let SELinux protect your system. - [root@centos ~]# setenforce 1 - [root@centos ~]# getenforce - Enforcing + [root@centos ~]# setenforce 1 + [root@centos ~]# getenforce + Enforcing ### Next Steps diff --git a/docs/security/linode-manager-security-controls.md b/docs/security/linode-manager-security-controls.md index cf9c0bf703c..71c4cf8a5b6 100644 --- a/docs/security/linode-manager-security-controls.md +++ b/docs/security/linode-manager-security-controls.md @@ -32,7 +32,7 @@ If you enable this optional feature in the Linode Manager, you'll access your Li ### Select a Token Application -Before you enable two-factor authentication in the Linode Manager, select a token application for your smartphone. We'll use Authy as an example in this guide, but you can use any application that supports the Time-based One-Time Password (TOTP) algorithm. For example, you can use any of the following applications: +Before you enable two-factor authentication in the Linode Manager, select a token application for your smartphone. This guide will use Authy as an example, but you can use any application that supports the Time-based One-Time Password (TOTP) algorithm. For example, you can use any of the following applications: * [Authy](https://authy.com/features/setup/) (iOS/Android/Chrome) * [Google Authenticator](http://support.google.com/accounts/bin/answer.py?hl=en&answer=1066447) (iOS/Android/BlackBerry) @@ -40,6 +40,10 @@ Before you enable two-factor authentication in the Linode Manager, select a toke Install one of these applications on your smartphone before continuing. +{{< note >}} +Authy stores your authentication tokens (hashed for security) on their servers. This makes it possible for them to support backing up and restoring tokens, as well as making it easy to switch devices. However, some users may not be comfortable storing sensitive information in the cloud; for these users, Google Authenticator is a better choice, as the authentication keys are only stored locally. +{{< /note >}} + ### Enable Two-Factor Authentication Enable two-factor authentication to start using it with your Linode Manager account. @@ -232,7 +236,7 @@ If you regenerated the URL for the RSS feed, you will need to update it in your The [Linode API](https://www.linode.com/api/) is a programmatic interface for many of the features available in the Linode Manager. It's an indispensable tool for developers, but it's also a potential attack vector. For this reason, the Linode Manager provides two security controls for your account's API key. First, you can generate a new API key if you suspect that your existing key has been compromised. And if you're not using the API key, you can remove access to it altogether. -For details on generating and removing API keys, please see the [API Key](/docs/api/key) article. +For details on generating and removing API keys, please see the [API Key](/docs/platform/api/api-key/) article. ## Next Steps If you've completed this guide, you've proactively taken steps to protect your Linode Manager account. But don't stop here! There are a couple other steps that some users should take to secure their Linode Manager accounts. Take some time and work through the following action items outlined in our other guides. diff --git a/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability.md b/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability.md index 0605cd52e04..f2b0ffd3462 100644 --- a/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability.md +++ b/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability.md @@ -24,18 +24,18 @@ You must first see if you are vulnerable. As there are several vulnerabilities, To check if your Linode is vulnerable, run the following in Bash: - env x='() { :;}; echo vulnerable' bash -c 'echo this is a test' + env x='() { :;}; echo vulnerable' bash -c 'echo this is a test' If your Linode is vulnerable, you will see: - vulnerable - this is a test + vulnerable + this is a test If your Linode is not vulnerable, you will see: - bash: warning: x: ignoring function definition attempt - bash: error importing function definition for `x' - this is a test + bash: warning: x: ignoring function definition attempt + bash: error importing function definition for `x' + this is a test In some distributions, such as Ubuntu 12.04, you may not see the bash warning errors. As long as you do not see `vulnerable` in your output, you are running an upgraded version for CVE-2014-6271. @@ -45,19 +45,19 @@ While working on CVE-2014-6271, a new bug was discovered and given the CVE ident To check for the vulnerability, run the following in Bash: - env X='() { (a)=>\' sh -c "echo date"; cat echo + env X='() { (a)=>\' sh -c "echo date"; cat echo If your Linode is vulnerable, you will see: - bash: X: line 1: syntax error near unexpected token `=' - bash: X: line 1: `' - bash: error importing function for `X' - Sun Sep 08:17:32 EST 2014 + bash: X: line 1: syntax error near unexpected token `=' + bash: X: line 1: `' + bash: error importing function for `X' + Sun Sep 08:17:32 EST 2014 -If your Linode is not vulernable, you will see: +If your Linode is not vulnerable, you will see: - date - cat: echo: No such file or directory + date + cat: echo: No such file or directory ### CVE-2014-7186 @@ -67,24 +67,24 @@ The vulnerability allowed out-of-bounds memory access by using a fixed-sized red To test the vulnerability, run the following in Bash: - bash -c 'true <=app-shells/bash-3.1_p18-r1" + emerge --sync + emerge --ask --oneshot --verbose ">=app-shells/bash-3.1_p18-r1" Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been patched. @@ -149,17 +149,17 @@ Re-run the commands in the "Checking the Vulnerability" section of this document To patch the vulnerability in Bash 3.2 on Gentoo, run: - emerge --sync - emerge --ask --oneshot --verbose ">=app-shells/bash-3.2_p52-r1" + emerge --sync + emerge --ask --oneshot --verbose ">=app-shells/bash-3.2_p52-r1" -Re-run the commands in the "Checking the Vulnerabilty" section of this documentation to ensure it has been patched. +Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been patched. #### Bash 4.0 To patch the vulnerability in Bash 4.0 on Gentoo, run: - emerge --sync - emerge --ask --oneshot --verbose ">=app-shells/bash-4.0_p39-r1" + emerge --sync + emerge --ask --oneshot --verbose ">=app-shells/bash-4.0_p39-r1" Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been patched. @@ -167,8 +167,8 @@ Re-run the commands in the "Checking the Vulnerability" section of this document To patch the vulnerability in Bash 4.1 on Gentoo, run: - emerge --sync - emerge --ask --oneshot --verbose ">=app-shells/bash-4.1_p12-r1" + emerge --sync + emerge --ask --oneshot --verbose ">=app-shells/bash-4.1_p12-r1" Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been patched. @@ -176,8 +176,8 @@ Re-run the commands in the "Checking the Vulnerability" section of this document To patch the vulnerability in Bash 4.2 on Gentoo, run: - emerge --sync - emerge --ask --oneshot --verbose ">=app-shells/bash-4.2_p48-r1" + emerge --sync + emerge --ask --oneshot --verbose ">=app-shells/bash-4.2_p48-r1" Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been patched. @@ -186,7 +186,7 @@ Re-run the commands in the "Checking the Vulnerability" section of this document To upgrade Bash against the vulnerability on OpenSUSE, run: - zypper patch --cve=CVE-2014-7187 + zypper patch --cve=CVE-2014-7187 Re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been upgraded. @@ -195,7 +195,7 @@ Re-run the commands in the "Checking the Vulnerability" section of this document To upgrade against the vulnerability on Slackware, you must upgrade the Bash package using `slackpkg`: - slackpkg update - slackpkg upgrade bash + slackpkg update + slackpkg upgrade bash Once you have done so, re-run the commands in the "Checking the Vulnerability" section of this documentation to ensure it has been upgraded. diff --git a/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability.md b/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability.md index fc0d2cce0d7..e7ce9977b26 100644 --- a/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability.md +++ b/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability.md @@ -149,7 +149,7 @@ int main(void) { gcc GHOST.c -o GHOST -3. Execute the compiled GHOST script. Your terminal should print "vulnerable" or "not vulnerable" depening on your system's status. +3. Execute the compiled GHOST script. Your terminal should print "vulnerable" or "not vulnerable" depending on your system's status. ./GHOST 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 new file mode 100644 index 00000000000..4ffd587b4f5 --- /dev/null +++ b/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora.md @@ -0,0 +1,170 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'Prepare and Submit a Request to Obtain a Commercially Signed SSL Certificate on CentOS or Fedora' +keywords: ["ssl certificate", "ssl cert", "commercial", "csr", "centos", "fedora"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['security/ssl-certificates/commercial/'] +modified: 2016-08-19 +modified_by: + name: Nick Brewer +published: 2016-08-19 +title: Obtain a Commercially Signed SSL Certificate on CentOS and Fedora +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. + +For an SSL setup with Nginx, please start with our [Nginx and SSL](/docs/security/ssl/provide-encrypted-resource-access-using-ssl-certificates-on-nginx) guide. + +If hosting multiple websites with commercial SSL certificates on the same IP address, use the [Server Name Identification (SNI) extension](https://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI) of TLS. SNI is accepted by most modern web browsers. If you expect to receive connections from clients running legacy browsers (like Internet Explorer for Windows XP), you will need to [contact support](/docs/platform/support) to request an additional IP address. + +## Before You Begin + +- Complete our [Getting Started](/docs/getting-started) and [Securing Your Server](/docs/securing-your-server) guides. + +- Ensure that your packages are up to date. + + * On CentOS and Fedora 21 or below: + + sudo yum update + + * On Fedora 22 and above: + + sudo dnf upgrade + +{{< note >}} +The steps in this guide require root privileges. Be sure to run the steps below as **root** or with the `sudo` prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. + +Replace each instance of `example.com` in this guide with your site's domain name. +{{< /note >}} + +## Create a Certificate Signing Request + +{{< note >}} +While some Certificate Authorities (CA) will automatically include the "www" subdomain when issuing certificates for a root domain such as example.com, others do not. If you wish to secure multiple subdomains using the same certificate, you will need to create a [wildcard certificate](https://en.wikipedia.org/wiki/Wildcard_certificate). +{{< /note >}} + +Issue the following commands to navigate to the `/etc/ssl` directory, and create a certificate signing request (CSR) for the site that will be using SSL. Change `example.com` to reflect the fully qualified domain name (FQDN) of the site you intend to use with SSL. Leave the challenge password blank: + + cd /etc/ssl/ + openssl req -new -newkey rsa:2048 -nodes -sha256 -days 365 -keyout /etc/pki/tls/private/example.com.key -out example.com.csr + +After the first command changes directories, the second command creates a `.csr` file under the `/etc/ssl` directory, and a `.key` file under `/etc/pki/tls/private` using these options: + +* `-nodes` instructs OpenSSL to create a certificate that does not require a passphrase. If this option is excluded, you will be required to enter the passphrase in the console each time the application using it is restarted. + +* `-days` determines the length of time in days that the certificate is being issued for. We entered 365 for the days parameter to the command, as we would be paying for one year of SSL certificate verification from a commercial certificate authority (CA). + +* `rsa:` allows you to specify the size of the RSA key. In this case we've chosen 2048 bits as this is the recommended minimum size. + +* `-sha256` ensures that the certificate request is generated using 265-bit SHA (Secure Hash Algorithm). + +Here are the values we entered for our example certificate. Note that you can ignore the 'extra' attributes: + + Generating a 2048 bit RSA private key + ......................................................++++++ + ....++++++ + writing new private key to 'example.com.key' + ----- + You are about to be asked to enter information that will be incorporated + into your certificate request. + What you are about to enter is what is called a Distinguished Name or a DN. + There are quite a few fields but you can leave some blank + For some fields there will be a default value, + If you enter '.', the field will be left blank. + ----- + Country Name (2 letter code) [AU]:US + State or Province Name (full name) [Some-State]:New Jersey + Locality Name (eg, city) []:Absecon + Organization Name (eg, company) [Internet Widgits Pty Ltd]:MyDomain, LLC + Organizational Unit Name (eg, section) []:Web Services + Common Name (eg, YOUR name) []:example.com + Email Address []:support@example.com + + Please enter the following 'extra' attributes + to be sent with your certificate request + A challenge password []: + An optional company name []: + +Restrict the private key's file properties to be read only by owner: + + chmod 400 /etc/pki/tls/private/example.com.key + +You may now submit the file ending in `.csr` to a commercial SSL provider for signing. You will receive a signed file after the CA signs the request. Save this file as `/etc/pki/tls/certs/example.com.crt`. + +Restrict the signed certificate's file properties as well: + + chmod 400 /etc/pki/tls/certs/example.com.crt + +## Get the CA Root Certificate + +Most modern distributions come with common root CA certificates installed as part of the "ca-certificates" package. To check if this package is installed, run: + + yum list installed ca-certificates + +The ca-certificates package comes with a bundle of root certs located under `/etc/pki/tls/certs/ca-bundle.crt` that can be used with many prevalent certificate authorities. If you're using an older distribution that does not have the ca-certificates package, you will need to download your root certificate from the CA that issued it. Some standard commercial certificate authorities are: + +- [Verisign](https://knowledge.verisign.com/support/ssl-certificates-support/index.html) +- [Thawte](http://www.thawte.com/roots/index.html) +- [Globalsign](http://www.globalsign.com/en//) +- [Comodo](https://support.comodo.com/index.php?_m=downloads&_a=view&parentcategoryid=1&pcid=0&nav=0) + +## Add Your Root Certificate to the CA Bundle + +You can add root certificates to the bundle by enabling dynamic CA configuration: + + update-ca-trust force-enable + +Next copy the certificate file to the appropriate directory, and update the bundle: + + cp root-example.crt /etc/pki/ca-trust/source/anchors/ + update-ca-trust extract + +## Prepare a Chained SSL Certificate + +In some cases, CAs have not submitted a Trusted Root CA Certificate to some or all browser vendors. Because of this, you can choose to *chain* roots for certificates to be trusted by web browsers. If you receive several files from your CA ending with `.crt` (collectively referred to as a "chained SSL certificate"), they must be linked into one file, in a specific order, to ensure full compatibility with most browsers. The example below uses a chained SSL certificate that was signed by Comodo. + +Prepare your chained SSL certificate: + + cat example.com.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > www.mydomain.com.crt + +The contents of the resulting file will appear similar to the following: + + -----BEGIN CERTIFICATE----- + MIIFSzCCBDOgAwIBAgIQVjCXC0bF9U8FypJOnL9cuDANBgkqhkiG9w0BAQsFADCB + ................................................................ + ncHG3hwHHwhiEz6ukC2mqxA+D3KILiywgHgWcumnpeCEUQgDzy0Fz2Ip/kR/1Fkv + DCQzME2NkT1ZdW8fdz+Y + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIGCDCCA/CgAwIBAgIQKy5u6tl1NmwUim7bo3yMBzANBgkqhkiG9w0BAQwFADCB + ................................................................ + j4rBYKEMrltDR5FL1ZoXX/nUh8HCjLfn4g8wGTeGrODcQgPmlKidrv0PJFGUzpII + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + ZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBF + ................................................................ + Uspzgb8c8+a4bmYRBbMelC1/kZWSWfFMzqORcUx8Rww7Cxn2obFshj5cqsQugsv5 + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU + ................................................................ + 6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC + -----END CERTIFICATE----- + + +Use this table to better visualize the command entered to prepare the chained SSL certificate: + +| **Certificate Type:** | **Issued to:** | **Issued by:** | +|----------------------------|:----------------------------------------|:----------------------------------------| +| End-user Certificate | example.com | Comodo LLC | +| Intermediate Certificate 1 | Comodo LLC | COMODORSADomainValidationSecureServerCA | +| Intermediate Certificate 2 | COMODORSADomainValidationSecureServerCA | COMODORSAAddTrustCA | +| Root certificate | COMODORSAAddTrustCA | AddTrustExternalCARoot | 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 diff --git a/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid.md b/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid.md index ad84878cbfb..8ca4434040b 100644 --- a/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid.md +++ b/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid.md @@ -24,7 +24,7 @@ Ubuntu recommends waiting until the ".1" release of any version increment before # Upgrade Instructions -You should stop as many services as possible before upgrading your system. This should include web server deaemons (Apache, nginx, etc), database servers (PostgreSQL, MySQL, etc), and any other non-critical services. +You should stop as many services as possible before upgrading your system. This should include web server daemons (Apache, NGINX, etc), database servers (PostgreSQL, MySQL, etc), and any other non-critical services. If you are running Ubuntu 8.04 or 9.10, edit your `/etc/fstab` file to include the following line (see later notes on Ubuntu 9.04). diff --git a/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick.md b/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick.md index 095094c6bb2..e6374b77a56 100644 --- a/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick.md +++ b/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick.md @@ -22,7 +22,7 @@ This guide explains how to upgrade your Linode to Ubuntu 10.10 (Maverick). As wi # Upgrade Instructions -You should stop as many services as possible before upgrading your system. This should include web server deaemons (Apache, nginx, etc), database servers (PostgreSQL, MySQL, etc), and any other non-critical services. +You should stop as many services as possible before upgrading your system. This should include web server daemons (Apache, NGINX, etc), database servers (PostgreSQL, MySQL, etc), and any other non-critical services. If you are running Ubuntu 8.04 or 9.10, edit your `/etc/fstab` file to include the following line (see later notes on Ubuntu 9.04). diff --git a/docs/security/upgrading/upgrade-to-debian-8-jessie.md b/docs/security/upgrading/upgrade-to-debian-8-jessie.md index ae87c330853..d814b82a402 100644 --- a/docs/security/upgrading/upgrade-to-debian-8-jessie.md +++ b/docs/security/upgrading/upgrade-to-debian-8-jessie.md @@ -14,7 +14,7 @@ title: 'Upgrading to Debian 8 (Jessie)' Debian 8 (Jessie) is the most recent version of Debian, released in April 2015. This guide explains how to upgrade your system from Debian 7 (Wheezy) to Debian 8. -Bear in mind that while package and distribution maintainers try to ensure cross-compatibility and problem-free upgrades, there is always the lingering possiblity of something not working out as planned. This is one reason why backing up your data is so important. +Bear in mind that while package and distribution maintainers try to ensure cross-compatibility and problem-free upgrades, there is always the lingering possibility of something not working out as planned. This is one reason why backing up your data is so important. {{< note >}} If you use the Apache web server, be aware that Debian 8 moves from Apache 2.2 to 2.4. This version change requires several adjustments to configuration files, and can break an existing website. Please follow our [Upgrading Apache](/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4) guide before continuing. diff --git a/docs/security/using-fail2ban-for-security.md b/docs/security/using-fail2ban-for-security.md index 13c4fcf0e94..29574e36e83 100644 --- a/docs/security/using-fail2ban-for-security.md +++ b/docs/security/using-fail2ban-for-security.md @@ -58,7 +58,7 @@ Follow the [Getting Started](/docs/getting-started) guide to configure your basi {{< note >}} Should you encounter the error that there is "*no directory /var/run/fail2ban to contain the socket file /var/run/fail2ban/fail2ban.sock*", create the directory manually: -'mkdir /var/run/fail2ban' + mkdir /var/run/fail2ban {{< /note >}} ### Debian @@ -79,9 +79,10 @@ Should you encounter the error that there is "*no directory /var/run/fail2ban to {{< note >}} The current version of Sendmail in Debian Jessie has an [upstream bug](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=293017) which causes the following errors when installing `sendmail-bin`. The installation will hang for a minute, but then complete. -Creating /etc/mail/sendmail.cf... -ERROR: FEATURE() should be before MAILER() MAILER(`local') must appear after FEATURE(`always_add_domain') -ERROR: FEATURE() should be before MAILER() MAILER(`local') must appear after FEATURE(`allmasquerade') + + Creating /etc/mail/sendmail.cf... + ERROR: FEATURE() should be before MAILER() MAILER('local') must appear after FEATURE('always_add_domain') + ERROR: FEATURE() should be before MAILER() MAILER('local') must appear after FEATURE('allmasquerade') {{< /note >}} ### Fedora @@ -298,7 +299,7 @@ The best way to understand how failregex works is to write one. Although we do n - - \[(\d{2}) - The following forward slash will then be called with a literal forward slash, followed by `\w{3}` which looks for a series of `3` apha-numeric characters (i.e., A-Z, 0-9, any case). The following forward slash should also be literal: + The following forward slash will then be called with a literal forward slash, followed by `\w{3}` which looks for a series of `3` alpha-numeric characters (i.e., A-Z, 0-9, any case). The following forward slash should also be literal: - - \[(\d{2})/\w{3}/ diff --git a/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh.md b/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh.md index e1b7d96bb08..d72ae326ccc 100644 --- a/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh.md +++ b/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh.md @@ -39,7 +39,7 @@ An Elastic Stack, formerly known as an ELK Stack, is a combination of Elasticsea ## What is Wazuh OSSEC -Wazuh is an open source branch of the orignal [OSSEC HIDS](https://ossec.github.io/) developed for integration into the Elastic Stack. Wazuh provides the OSSEC software with the OSSEC ruleset, as well as a RESTful API Kibana plugin optimized for displaying and analyzing host IDS alerts. +Wazuh is an open source branch of the original [OSSEC HIDS](https://ossec.github.io/) developed for integration into the Elastic Stack. Wazuh provides the OSSEC software with the OSSEC ruleset, as well as a RESTful API Kibana plugin optimized for displaying and analyzing host IDS alerts. ## Before You Begin @@ -106,7 +106,7 @@ protect=1 3. Install Wazuh API: - 1. Install the NodeJS repository: + 1. Install the Node.js repository: curl --silent --location https://rpm.nodesource.com/setup_6.x | bash - diff --git a/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode.md b/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode.md index d0ff18e60dd..b6dc52c1901 100644 --- a/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode.md +++ b/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode.md @@ -17,7 +17,7 @@ title: Install a Custom Distribution on a Xen Linode If you'd like to run a Linux distribution on your Linode that isn't available from our distribution list, you can do so by following these instructions. This guide is handy for people who prefer distributions that aren't heavily used in the community, or for those interested in creating a highly customized Linux environment and porting it to their Linode. {{< note >}} -This guide is intended for Linodes using our older Xen hypervisor. To installl a custom distribution on a new KVM Linode, see [this guide](/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode). +This guide is intended for Linodes using our older Xen hypervisor. To install a custom distribution on a new KVM Linode, see [this guide](/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode). {{< /note >}} ## Creating the Virtual Machine 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 50d1b1d05d2..2e7b60a141f 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,9 +5,9 @@ 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: 2016-09-22 +modified: 2018-01-18 modified_by: - name: Phil Zona + name: Linode published: 2016-09-22 title: 'Install Alpine Linux on your Linode' contributor: @@ -17,7 +17,6 @@ external_resources: - '[Alpine Linux](http://www.alpinelinux.org/)' --- - [Alpine Linux](http://www.alpinelinux.org/) is a small, security-oriented Linux distro. It's regularly updated with security patches, and runs on the [grsecurity](https://grsecurity.net/) kernel. All binaries are statically linked and built against [musl libc](http://www.musl-libc.org/intro.html). @@ -25,9 +24,9 @@ It's regularly updated with security patches, and runs on the [grsecurity](https 1. Familiarize yourself with [Lish](/docs/networking/using-the-linode-shell-lish), as most of this guide will require an out-of-band connection. -2. Back up *all* data on the images on which you intend to install Alpine. Installing Alpine in this manner will destroy all existing data on the disk images you install it on. +2. Installing Alpine in this manner will destroy all existing data on the installation target disks. Back up *all* data on the disks which you intend to install Alpine on. -3. The initial portion of this guide involves creating the disk images, so you make sure you have plenty of free space for them. A minimal installation of Alpine requires less than 1 GB, but depending on your data storage and software needs, you may want to allow for more. +3. The initial portion of this guide involves creating the disk images, so you make sure you have plenty of free space for them. A minimal installation of Alpine requires less than 1 GB, but depending on your needs, you may want to allow for more. 4. This guide assumes a consistent present working directory, meaning all commands should be run from the same directory. In most cases, it will be `/alpine` or a chroot of said directory. @@ -91,7 +90,7 @@ Turn off all the **Filesystem/Boot Helpers**. The rest of the settings can be le ### Download APK Tools -1. Update the CA Certificates package, so `curl` can verify the download: +1. Update the CA Certificates package so `curl` can verify the download: update-ca-certificates @@ -99,7 +98,7 @@ Turn off all the **Filesystem/Boot Helpers**. The rest of the settings can be le 3. Identify the current version of the `apk-tools-static` package. You will need to navigate into the `main/x86_64` directory of your chosen release in your web browser. - For example, the latest stable version's `apk-tools-static` package can be found by visiting `http://nl.alpinelinux.org/alpine/latest-stable/main/x86_64/`. From there, simply search for `apk-tools-static`. Once you've found it, copy the file's location. To do this in most browsers, right click the filename and select **Copy Link Address**. + For example, the latest stable version's `apk-tools-static` package can be found at `http://nl.alpinelinux.org/alpine/latest-stable/main/x86_64/`. From there, simply search for `apk-tools-static`. Once you've found it, copy the file's location. To do this in most browsers, right click the filename and select **Copy Link Address**. 4. Download and extract the `apk-tools-static` package to your Linode. You should still be working in the `/alpine` directory when performing this step. Replace `address` in the following command with the address you copied in the previous step: @@ -115,7 +114,7 @@ Turn off all the **Filesystem/Boot Helpers**. The rest of the settings can be le In this section, we will modify critical system files. It is recommended that you make backup copies before making changes. -1. Configure your file systems table (*fstab*), entering a single hard tab between each column. This file specifies how each disk drive is initialized or mounted into the overall filesystem: +1. Configure your filesystem table (*fstab*), entering a single hard tab between each column. This file specifies how each disk is initialized or mounted into the overall filesystem: {{< file "/alpine/etc/fstab" >}} /dev/sdb / ext4 defaults,noatime 0 0 @@ -125,25 +124,13 @@ In this section, we will modify critical system files. It is recommended that yo {{< /file >}} -2. Modify the *inittab*. This file contains options to be read when the system boots or changes run states: - - {{< file "/alpine/etc/inittab" >}} -# /etc/inittab - -::sysinit:/sbin/rc sysinit -::sysinit:/sbin/rc boot -::wait:/sbin/rc default +2. Uncomment the line below to enable a serial console output. This gives you visibility over Lish when booting the installed system. + {{< file-excerpt "/alpine/etc/inittab" >}} # Put a getty on the serial port ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100 -# Stuff to do for the 3-finger salute -::ctrlaltdel:/sbin/reboot - -# Stuff to do before rebooting -::shutdown:/sbin/rc shutdown - -{{< /file >}} +{{< /file-excerpt >}} 3. Create the GRUB 2 boot configuration directory: @@ -158,8 +145,8 @@ set default="Alpine Linux" set timeout=0 menuentry "Alpine Linux" { - linux /vmlinuz-grsec root=/dev/sdb modules=sd-mod,usb-storage,ext4 console=ttyS0 quiet - initrd /initramfs-grsec + linux /vmlinuz-hardened root=/dev/sdb modules=sd-mod,usb-storage,ext4 console=ttyS0 quiet + initrd /initramfs-hardened } {{< /file >}} @@ -177,11 +164,11 @@ features="ata ide scsi virtio base ext4" {{< /file >}} -5. Copy the system's `resolv.conf` file into `/alpine/etc`: +5. Copy the recovery system's `resolv.conf` file into `/alpine/etc`. Optionally, you can fill in your own choice of DNS resolvers. cp /etc/resolv.conf /alpine/etc -6. Add `ttyS0` to `securetty` to allow root login over Lish: +6. If you want to allow root logins over Lish, add `ttyS0` to `securetty`: echo ttyS0 >> /alpine/etc/securetty @@ -222,13 +209,19 @@ features="ata ide scsi virtio base ext4" apk add linux-grsec -8. Exit the chroot jail by issuing the `exit` command, and then shut down your Linode from the Linode Dashboard. +8. Exit the chroot jail: + + exit ## Configure Alpine Linux ### Reboot into Alpine -1. Boot into the Alpine Linux configuration you made earlier by selecting the button next to the profile in the Linode Manager and clicking **Boot**. If this is the only configuration profile, this can also be accomplished from Lish using the `boot 1` command. If there are other profiles, you can substitute `1` with the list position of your Alpine profile. +1. Reboot into the Alpine Linux configuration you made earlier by selecting the button next to the profile in the Linode Manager and clicking **Reboot**. If this is the only configuration profile, this can also be accomplished directly in Lish using the `boot 1` command. If there are other profiles, you can substitute `1` with the list position of your Alpine profile. + + {{< note >}} +During boot, the output in Lish that networking fails to start. This is expected, and will be fixed shortly. +{{< /note >}} 2. Use Lish to log in as `root`. You will not be prompted for a password since it has not yet been set. @@ -256,22 +249,13 @@ features="ata ide scsi virtio base ext4" apk add sudo -5. Configure `sudo` to allow users in the sudo group to temporarily elevate their privileges: - - echo "%sudo ALL=(ALL) ALL" >> /etc/sudoers +5. Add your new user to the `wheel` group: - Alternatively, you can allow passwordless sudo. However, this is not recommended in most cases: - - echo "%sudo ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers - - {{< caution >}} -This configuration is less secure, and generally not recommended. -{{< /caution >}} + adduser example-user wheel -6. Create the sudo group and add your new user to it: +6. Allow the `wheel` group to temporarily elevate their privileges with sudo: - addgroup sudo - adduser example-user sudo + sed -i '/%wheel/s/^# //' /etc/sudoers 7. Install and configure the SSH daemon (SSHD). Alpine has a simple setup script to handle this: @@ -281,7 +265,7 @@ This configuration is less secure, and generally not recommended. ## Next Steps -At this point, you should be able to connect to your server via SSH. Alpine is very lightweight, and doesn't install very much unless you ask it to. For instance, you won't have a text editor to start off, and the only service running is your SSH daemon. +At this point, you should be able to connect to your server via SSH. Alpine is very lightweight, and doesn't install very much unless you ask it to. ## Install Packages @@ -306,6 +290,6 @@ For more information, see Alpine's wiki page on [package management](https://wik ## Secure Your Server -Before using your Linode in a development or production capacity, make sure you've taken some basic security precautions. Our guide on [Securing Your Server](/docs/security/securing-your-server) provides a good starting point, but you may want to research additional, Alpine-specific security options on your own. Keep in mind that you will need to install most security packages, e.g. `iptables`. +Before using your Linode in a development or production capacity, make sure you've taken some basic security precautions. Our [Securing Your Server](/docs/security/securing-your-server) guide provides a good starting point but you should also research additional, Alpine-specific security options. Keep in mind that most security packages (e.g. `iptables`.) will need to be installed. For more information, refer to their wiki page on [security](https://wiki.alpinelinux.org/wiki/Category:Security). diff --git a/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode.md b/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode.md index 2b8660a00d1..fda9dbe0e12 100644 --- a/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode.md +++ b/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode.md @@ -25,7 +25,7 @@ CoreOS Container Linux is now available for deployment from the Linode Manager. [CoreOS](https://coreos.com/) is a container-centric Linux distribution designed for clustered systems running in the cloud. With user applications running inside containers, the host system itself provides minimal functionality. This guide details installing CoreOS on a **KVM** Linode. If you're running a Xen Linode, you can [upgrade](/docs/platform/kvm-reference/#how-to-enable-kvm), but it is currently not possible to install CoreOS on a Xen Linode. -CoreOS is not officially supported by Linode so there are limitations to using it in comparision to the Linux images provided in the Linode Manager. +CoreOS is not officially supported by Linode so there are limitations to using it in comparison to the Linux images provided in the Linode Manager. * The CoreOS installer will create a partition table on the disk image which will interfere with the [Linode Backup](/docs/platform/backup-service) service because the disk image will not be directly mountable. 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..8722e5f8bb9 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. @@ -134,7 +134,7 @@ SSH logins for `root` are disabled by default in FreeBSD but standard system use [![FreeBSD Manual Configuration](/docs/assets/freebsd-manual-config-small.png)](/docs/assets/freebsd-manual-config.png) -11. This final step is required to enable Lish, Glish, and make a few other changes. Use your favorite text editor and insert the following at the bottem of `/boot/loader.conf`. (FreeBSD ships with `ee` and `nvi`, linked as `vi`) +11. This final step is required to enable Lish, Glish, and make a few other changes. Use your favorite text editor and insert the following at the bottom of `/boot/loader.conf`. (FreeBSD ships with `ee` and `nvi`, linked as `vi`) {{< file-excerpt "/boot/loader.conf" >}} boot_multicons="YES" diff --git a/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub.md b/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub.md index 1b0a6b60987..8cf0140d492 100644 --- a/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub.md +++ b/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub.md @@ -95,7 +95,7 @@ Once your configuration options are set, exit the configuration interface and an mv /boot/vmlinuz /boot/vmlinuz-3.19.3-custom -3. Create an `initrd` file. Aagain, adjust the filename to match your current kernel version: +3. Create an `initrd` file. Again, adjust the filename to match your current kernel version: mkinitrd -o initrd-3.19.3-custom.img diff --git a/docs/tools-reference/file-transfer/filezilla.md b/docs/tools-reference/file-transfer/filezilla.md index 6c6f9e16185..d2f14bb3388 100644 --- a/docs/tools-reference/file-transfer/filezilla.md +++ b/docs/tools-reference/file-transfer/filezilla.md @@ -17,7 +17,7 @@ external_resources: - '[Tools & Reference](/docs/tools-reference/)' --- -FileZilla is a free, open source file transfer program written for Linux, MacOS X, and Windows systems. It implements several file transfer protocols, most notably SFTP via SSH. This tool allows you to securely transfer files to and from your Linode using an encrypted channel, avoiding the security problems and usability issues inherent in traditional FTP client/server systems. FileZilla can send both your login credentials and file transfers over the network securely encrypted (provided you're using SFTP), while standard FTP clients send this information as plaintext. +FileZilla is a free, open source file transfer program written for Linux, Mac OS X, and Windows systems. It implements several file transfer protocols, most notably SFTP via SSH. This tool allows you to securely transfer files to and from your Linode using an encrypted channel, avoiding the security problems and usability issues inherent in traditional FTP client/server systems. FileZilla can send both your login credentials and file transfers over the network securely encrypted (provided you're using SFTP), while standard FTP clients send this information as plaintext. ![Transfer Files with FileZilla](/docs/assets/transfer-files-with-filezilla.png "Transfer Files with FileZilla") diff --git a/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop.md b/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop.md index 5f785a1e56a..85f4edcb3c8 100644 --- a/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop.md +++ b/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop.md @@ -14,7 +14,7 @@ published: 2009-11-13 title: 'Transfer Files with Filezilla on Ubuntu 9.10 Desktop' --- -Filezilla is a free, open source file transfer program written for Linux, MacOS X, and Windows systems. It implements several file transfer protocols, most notably SFTP via SSH. This tool allows you to securely transfer files to and from your Linode using an encrypted channel, avoiding the security problems and usability issues inherent in traditional FTP client/server systems. Filezilla can send both your login credentials and file transfers over the network securely encrypted (provided you're using SFTP), while standard FTP clients send this information as plaintext. +Filezilla is a free, open source file transfer program written for Linux, Mac OS X, and Windows systems. It implements several file transfer protocols, most notably SFTP via SSH. This tool allows you to securely transfer files to and from your Linode using an encrypted channel, avoiding the security problems and usability issues inherent in traditional FTP client/server systems. Filezilla can send both your login credentials and file transfers over the network securely encrypted (provided you're using SFTP), while standard FTP clients send this information as plaintext. You'll need to make sure your Linode is running an SSH daemon (all Linodes run an OpenSSH server by default), and that you have a user account on the server before following these instructions. If you wish, you may use the `root` account on your Linode to perform file transfers, although you may need to change [file ownership and permissions](/docs/tools-reference/linux-users-and-groups) on the server after doing so. diff --git a/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip.md b/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip.md index 5cfbaca130f..6fca29ca6c8 100644 --- a/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip.md +++ b/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip.md @@ -3,20 +3,21 @@ author: name: Linode email: docs@linode.com description: 'Use GNU tools to compress and archive files.' -keywords: ["tar", "gnu tar", "gzip", "gnu zip", "tar.gz. tgz", "file archive"] +og_description: 'This guide will show you how to use GNU tar and Gzip to compress and archive files.' +keywords: ["tar", "gnu tar", "gzip", "gnu zip", "tar.gz. tgz", "file archive", "compress", "tarball"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['linux-tools/common-commands/tar-gzip/'] -modified: 2011-08-22 +modified: 2018-01-29 modified_by: name: Linode -published: 2010-07-27 +published: 2010-01-30 title: Archiving and Compressing files with GNU Tar and GNU Zip external_resources: - '[GNU tar](http://www.gnu.org/software/tar/)' - '[GNU gzip](http://www.gzip.org/)' --- -`tar` and `gzip` provide a standard interface for creating archives and compressing files on Linux-based systems. Fundamentally, the function of these utilities is to take a large number of files, save them together in an archive (i.e. as a single file), and compress the archive to save space. However, tar and gzip provide a multitude of features that may obfuscate even the most simple of operations. +`tar` and `gzip` provide a standard interface for creating archives and compressing files on Linux systems. Together, these utilities take a large number of files, save them together in an archive (i.e. as a single file), and compress the archive to save space. However, tar and gzip provide a multitude of features and options that can lead to hard-to-read commands and make even the simplest operations confusing. This document provides an overview of `tar` and `gzip` usage, accompanied by a number of practical applications of these utilities. If you find this guide helpful, please consider our guide to [basic administration practices](/docs/using-linux/administration-basics) or the rest of the [Tools & Reference](/docs/tools-reference/) series. @@ -24,7 +25,7 @@ This document provides an overview of `tar` and `gzip` usage, accompanied by a n ## Using Tar and Gzip -In this guide, `tar` and `gzip` refer to recent versions of "GNU tar" and "GNU gzip" which are included by default in all images provided by Linode, and as part of the common "base" selection of packages provided in nearly all distributions of Linux-based operating systems. +In this guide, `tar` and `gzip` refer to recent versions of "GNU tar" and "GNU gzip" which are included by default in all images provided by Linode. ### The tar Command @@ -32,7 +33,7 @@ The complexity of `tar` does not derive from its basic form, but rather from the tar -xf ~/backup-archive.tar -This will extract (`-x`) the archive specified by the file (`-f`) named on the prompt. This archive is not compressed. To create an archive of all the files in the directory `~/backup`, issue a command on the following form: +This will extract (`-x`) the archive specified by the file (`-f`) named on the prompt. This archive is not compressed. To create an archive of all the files in the directory `~/backup`, use the following command: tar -c ~/backup > backup-archive.tar @@ -48,7 +49,7 @@ The order of options is sometimes important. The `-f` option needs to be the las ### The gzip Command -`gzip` and the accompanying `gunzip` command provide a simple and standard method of compressing individual files. Just as `tar` does not contain the ability to compress the files that it archives, the `gzip` tools are only able to act on single files. The following command takes the file `full-text.txt` and compresses it in the file `full-text.txt.gz` : +`gzip` and the accompanying `gunzip` command provide a simple and standard method of compressing individual files. Just as `tar` does not contain the ability to compress the files that it archives, the `gzip` tools are only able to act on single files. The following command takes the file `full-text.txt` and compresses it in the file `full-text.txt.gz`: gzip full-text.txt @@ -57,15 +58,15 @@ You can then use either of the following commands to decompress this file: gunzip full-text.txt.gz gzip -d full-text.txt.gz -You can add the `-v` flag to increase verbosity and output statistics regarding the rate of compression. This command would resemble the following: +You can add the `-v` flag to increase verbosity and output statistics regarding the rate of compression: gzip -v full-text.txt -`gzip` accepts standard input and thus can be used to compress the output of a stream of text. Consider the following example: +`gzip` accepts standard input and thus can be used to compress the output of a stream of text: cat full-text.txt | gzip > full-text.txt.gz -The compression algorithm that gzip uses to compress files (e.g. `DEFLATE`), can be configured to compress content more severely and thus save space at the expense of time. This ratio is controlled by a numeric argument between `-1` and `-9`. The default configuration is `-6`. `gzip` also contains `--fast` (equivalent to `-1`) and `--best` (equivalent to `-9`) as helpful mnemonics. Consider the following examples and their output: +The compression algorithm that `gzip` uses to compress files can be configured to use a higher amount of compression and thus save space at the expense of time. This ratio is controlled by a numeric argument between `-1` and `-9`. The default configuration is `-6`. `gzip` also contains `--fast` (equivalent to `-1`) and `--best` (equivalent to `-9`) as helpful mnemonics: gzip --best -v full-text.txt gzip --fast -v full-text.txt @@ -74,11 +75,11 @@ The compression algorithm that gzip uses to compress files (e.g. `DEFLATE`), can ## Creating An Archive -As stated above you can create a `tar` archive of the `~/backup` directory with the following command: +You can create a `tar` archive of the `~/backup` directory with the following command: tar -c ~/backup > backup-archive.tar -The archive, which is uncompressed, will end up in the `backup-archive.tar` file. To create a file without using the standard output redirection, you may consider the following equivalent form: +To create a file without using the standard output redirection, you may consider the following equivalent form: tar -cf backup_archive.tar ~/backup @@ -88,7 +89,7 @@ The order that options (e.g. the `-cf`) are invoked in is important, and the `-f ### Compress an Archive using Gzip -In conventional usage, `tar` is combined with a compression utility to not only archive files for more efficient backup but also compress them. However, some alternate compression and archiving tools with which you may be familiar include both functions in a single procedure. However, modern versions of `tar` are able to interface with common compression libraries and tools like `gzip` to compress archives effectively. Consider the following command: +In conventional usage, `tar` is combined with a compression utility to not only archive files for more efficient backup but also compress them. Some alternative compression and archiving tools with which you may be familiar include both functions in a single procedure. However, modern versions of `tar` are able to interface with common compression libraries and tools like `gzip` to create a compressed archive in a single step: tar -czf ~/backup-archive.tar.gz ~/backup/ @@ -123,7 +124,7 @@ As above, `tar` will auto detect for zip compression given the extensions `.tar. ## Discover the Contents of an Archive -While you can always extract the contents of an archive to learn the manifest of files, this may prove inefficient or prohibitively inconvenient. `tar` provides the ability to view the manifest of files in an archive. Consider the following example: +While you can always extract the contents of an archive to review the manifest of files, this can be inefficient. `tar` provides the ability to view the manifest of files in an archive without extracting them: tar -tf ~/backup-archive.tar @@ -135,13 +136,13 @@ To extract files from a `tar` archive, issue the following command: tar -xf ~/backup-archive.tar -This command simply extracts the content of an uncompressed `tar` archive into the current directory. Let's consider a more practical example of how `tar` may be used to extract files from a compressed archive: +This command simply extracts the content of an uncompressed `tar` archive into the current directory. Here is a more practical example of how `tar` may be used to extract files from a compressed archive: tar -xzvf ~/backup-archive.tar.gz The options specified have the following effects: `-x` extracts the contents of the archive, `-z` filters the archive through the `gzip` compression tool, `-v` enables verbose output which prints a list of files as they are extracted from the archive, and `-f` specifies that `tar` will read input from the subsequently specified file `~/backup-archive.tar.gz`. -When an archive is compressed with one of the other compatible compression tools, you will need to replace the `-z` option with the appropriate option flag for the compression type used. Therefore, to unpack an archive compressed with the `bzip2` tool you might issue a command in the following form: +When an archive is compressed with one of the other compatible compression tools, you will need to replace the `-z` option with the appropriate option flag for the compression type used. For example, to unpack an archive compressed with the `bzip2` tool: tar -xcvi ~/backup-archive.tar.bz2 @@ -149,11 +150,11 @@ The `-a` option that automatically determines which compression tool to use base ## Compressing Log Files -There are some files, particularly log files created by long running daemons like web and email servers, that can grow to a great size. While removing these files does not present a viable option, these files can grow unmanageably large in a short time. Since they are plain text, compression is very effective; however, because log files tend to be distinct and independent of each other, it doesn't make sense to use a tool like `tar`. In these cases it makes sense to use `gzip` directly as in the following example: +There are some files, particularly log files created by long running daemons like web and email servers, that can grow to a great size. While removing these files does not present a viable option, these files can grow unmanageably large in a short time. Since they are plain text, compression is effective; however, because log files tend to be distinct and independent of each other, it doesn't make sense to use a tool like `tar`. In these cases it makes sense to use `gzip` directly: gzip /var/log/mail.log -This will replace the original `/var/log/mail.log` with a file named `mail.log.gz`. If you need to access to the contents of this file you can issue the following command to uncompress the contents: +This will replace the original `/var/log/mail.log` with a file named `mail.log.gz`. To access the contents of this file: gunzip /var/log/mail.log.gz diff --git a/docs/tools-reference/tools/divide-files-with-split.md b/docs/tools-reference/tools/divide-files-with-split.md new file mode 100644 index 00000000000..fe9ed1b759f --- /dev/null +++ b/docs/tools-reference/tools/divide-files-with-split.md @@ -0,0 +1,144 @@ +--- +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", "unix", "command-line"] +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 Divide Files with split +--- + +## What is split? + +`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`. +{{< /note >}} + +## 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. 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 + +## Basic Usage + +1. Run the `split` command with default options: + + split moby-dick.txt + +2. Check your working directory: + + ls + + {{< output >}} +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 original `moby-dick.txt` file is left unchanged. + +## 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 output files. By default, this value is `x`. + + split moby-dick.txt moby-dick + +Each of the 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 >}} +$ 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 in different formats: + +- megabytes - **m** +- gigabytes - **g** +- terabytes - **t** + +#### 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 + +Like many shell commands, `split` can also accept input from the output of another command using the pipe operator: + + grep whale moby-dick.txt | split -l 100 diff --git a/docs/tools-reference/tools/how-to-grep-for-text-in-files.md b/docs/tools-reference/tools/how-to-grep-for-text-in-files.md index a14a9b1689c..1d0a353b4da 100644 --- a/docs/tools-reference/tools/how-to-grep-for-text-in-files.md +++ b/docs/tools-reference/tools/how-to-grep-for-text-in-files.md @@ -6,121 +6,125 @@ description: 'Practical examples for using grep to find strings in text files an keywords: ["grep", "search", "files", "filtering", "regular expressions"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['linux-tools/common-commands/grep/', 'tools-reference/search-and-filter-text-with-grep/','tools-reference/how-to-grep-for-text-in-files/'] -modified: 2011-05-04 +modified: 2018-02-01 modified_by: name: Linode og_description: “Learn how to use Grep for practical applications including filtering log files and finding strings in text files and streams.” published: 2010-06-30 title: How to Grep for Text in Files +external_resources: + - '[Grep | Regular-Expressions.info](https://www.regular-expressions.info/grep.html)' + - '[Perl Regular Expressions](https://perldoc.perl.org/perlre.html)' --- -The `grep` utility provides users of most Unix-like operating systems with a tool to search and filter text using a common regular expression syntax. Indeed, `grep` is so ubiquitous that the verb "to grep" has emerged as a synonym for "to search." `grep` is an ideal tool for finding all occurrences of a value in a selection of files, filtering a log file for certain entries, or as part of a script or chain of commands. - -This document provides an overview of `grep` usage, accompanied by a number of practical applications of `grep`. If you find this guide helpful, please consider our guide to [basic administration practices](/docs/using-linux/administration-basics) or the rest of the [Tools & Reference section](/docs/tools-reference/). - ![Using Grep](/docs/assets/search_and_filter_text_with_grep_smg.png "Search and filter text with Grep") +Grep is a command-line utility that can search and filter text using a common regular expression syntax. It is so ubiquitous that the verb "to grep" has emerged as a synonym for "to search." `grep` is a useful tool for finding all occurrences of a search term in a selection of files, filtering a log file or stream, or as part of a script or chain of commands. + +This guide provides an overview of `grep` usage, a brief introduction to regular expression syntax, and practical examples. ## Using Grep -This `grep` guide references recent versions of `GNU grep`, which are included by default in all images provided by Linode. It is also provided as part of the common "base" selection of packages provided in nearly all distributions of Linux-based operating systems. +This guide references recent versions of GNU grep, which are included by default in all images provided by Linode. It is also provided as part of the common base selection of packages provided in nearly all distributions of Linux-based operating systems. ### The Grep Command -A typical `grep` command takes the following form: +A basic `grep` command uses the following syntax: + + grep "string" ~/threads.txt - grep "string" ~/threads +The first argument to `grep` is a search pattern. The second (optional) argument is the name of a file to be searched. The above sequence will search for all occurrences of "string" in the `~/threads` file. -The `grep` invocation is followed by a pattern, or a "search term," and then optionally by the name of a file. The above sequence will search for the `string` sequence of characters located in the `~/threads` file. `grep` also permits recursive searching throughout directory trees. Issue a command in the following format: +If you want to search multiple files, the `-r` flag enables recursive searching through a directory tree: grep -r "string" ~/thread/ -When used on a specific file, `grep` only outputs the lines that contain the matching string. When run in recursive mode, grep outputs the full path to the file, followed by a colon, and the contents of the line that matches the pattern. Patterns in grep are, by default, "basic regular expressions;" however, if you need a more expressive regular expression syntax grep is capable of accepting patterns in alternate formats with the following switches: +When used on a specific file, grep only outputs the lines that contain the matching string. When run in recursive mode, grep outputs the full path to the file, followed by a colon, and the contents of the line that matches the pattern. Patterns in grep are, by default, basic regular expressions. If you need a more expressive regular expression syntax, grep is capable of accepting patterns in alternate formats with the following flags: -- Use `-E` to access the extended regular expression syntax. Equivalent to the deprecated `egrep` command. -- Use `-P` to access Perl compatible regular expression syntax. +| Flag | Usage | +|---|---------| +| -E | Use extended regular expression syntax. Equivalent to the deprecated `egrep` command. | +| -P | Use Perl regular expression syntax. | -Grep provides a number of very powerful options to control its output. The most significant of these options are: +Grep provides a number of powerful options to control its output: -- Set `-o` to only output the matching segment of the line, rather than the full contents of the line. -- Set `-n` to print the line number of where the pattern matches occur. -- Set `-C 2`, where 2 can be replaced by any number to show, in addition to the matching line, the specified number of "context" lines. +| Flag | Usage | +|---|---| +| -o | Output only the matching segment of each line, rather than the full contents of each matched line. | +| -n | Print the line number of each matched line. | +| -C 2 | Show 2 (or another number of) context lines in addition to the matched line. | -In addition to reading content from files, `grep` can read and filter a text feed on standard input. The output of any command or stream can be "piped" (e.g. with the `|` operator) to the `grep` command. Then, `grep` filters this output according to the match pattern specified and outputs only the matching lines. For instance, given the following command: +In addition to reading content from files, `grep` can read and filter text from standard input. The output of any command or stream can be piped to the `grep` command. Then, `grep` filters this output according to the match pattern specified and outputs only the matching lines. For instance, given the following command: ls --help | grep "dired" -This filters the output of the `ls` commands help text and looks for appearances of "dired", and outputs them to standard out (the current session). The output resembles: +This filters the output of the `ls` command's help text and looks for appearances of "dired", and outputs them to standard out: - -D, --dired generate output designed for Emacs' dired mode - -The combination of both input possibilities makes `grep` a powerful tool for interacting with large amounts of textual data. + {{< output >}} +-D, --dired generate output designed for Emacs' dired mode +{{< /output >}} ### Regular Expression Overview -While straight-forward pattern matching is powerful for some filtering tasks, the true power of `grep` lies in its ability to use regular expressions for complex pattern matching that make it possible to write more expressive patterns. Most characters in regular expressions match with input data literally; however, there are some sequences that carry special significance. If you want to mach these characters literally you can use the escape character `\` to transform the *next* character into a literal match. Consider the following characters with special significance in `grep` substitution scripts: - -- The `.` symbol matches any character. -- The `*` symbol causes the character immediately proceeding character to successfully match to *zero* or more instances of that character in the data set. -- The `+` symbol causes the character immediately proceeding character to successfully match to *one* or more instances of that character in the data set. -- Square brackets, `[]`, enclose a set of characters, that match against any member of the set of specified characters. When prefaced with a caret, as in `[^ABC]`, this matches *none* of the characters specified in the set. -- The `|` character provides an "OR" operator, so the sequence `^(www|ftp)\.` would match a line that began with the characters `www` or `ftp`. -- Parenthetical characters, `()`, allow you to write more complex expressions, particularly in conjunction with the pipe `|` operator. Parentheses create "sub expressions" which can be modified in a single group. -- The `^` character matches the beginning of a line. -- The `$` character matches the end of a line. -- The `\` character, as previously stated, escapes the following character for literal matching if it caries additional meaning. +While straightforward pattern matching is sufficient for some filtering tasks, the true power of `grep` lies in its ability to use regular expressions for complex pattern matching. Most characters in regular expressions match with input data literally; however, there are some sequences that carry special significance: -These operators provide only a very limited overview of the capabilities of `grep`'s regular expression syntax. Remember that `grep` operations are non-destructive, which makes it easy to experiment with matching patterns. Consider the examples that follow as a more practical introduction to this tool. +| Symbol | Result | +|---|--------------------------| +| . | Matches any character. | +| * | Matches zero or more instances of the preceding character. | +| + | Matches one or more instances of the preceding character. | +| [] | Matches any of the characters within the brackets. | +| () | Creates a sub-expression that can be combined to make more complicated expressions. | +| \|\ | **OR** operator; (www\|ftp) matches either "www" or "ftp". | +| ^ | Matches the beginning of a line. | +| $ | Matches the end of the line. | +| \\ | Escapes the following character. Since `.` matches any character, to match a literal period you would need to use `\.`. | ## Filtering Logs with Grep -One popular use of `grep` is to extract useful information from system logs. Consider the following examples. +One popular use of `grep` is to extract useful information from system logs: grep -Eoc "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.* 200" /srv/www/example.com/logs/access.log -In this command, grep filters an apache access log for a line that begins with an IP address, is followed by a number of characters, a space and then the characters `200` (where 200 represents the record of a successful HTTP connection). The `-c` option outputs only a count of the number of matches. To get the output of the IP address of the visitor and the path of the requested file for successful requests, omit the `-c` option as follows: +In this command, grep filters an Apache access log for all lines that begin with an IP address, followed by a number of characters, a space and then the characters `200` (where 200 represents a successful HTTP connection). The `-c` option outputs only a count of the number of matches. To get the output of the IP address of the visitor and the path of the requested file for successful requests, omit the `-c` flag: grep -Eo "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.* 200" /srv/www/example.com/logs/access.log -The squiggly brackets (e.g. `{` and `}`) indicate the number of instances of the match. `{1,3}` requires that the previous character or character class must occur at least once, but no more than three times. The character class `[0-9]` will successfully match against one or more numeric digits. To generate similar output but report on unsuccessful attempts to access content, use a command that resembles the following: +The curly brackets specify the number of instances of the pattern. `{1,3}` requires that the previous character occur at least once, but no more than three times. The character class `[0-9]` will match against one or more numeric digits. You can also generate similar output but report on unsuccessful attempts to access content: grep -Eo "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.* 404" /srv/www/example.com/logs/access.log -The following variant of the above command generates a list of all IP addresses that have attempted to connect to your web server. Using the `-o` option, only the matching strings are sent to standard output. This output is filtered through the utility `uniq` with the "pipe" operator (e.g. `|`) to filter out duplicate entries from a single IP address: +The following command generates a list of all IP addresses that have attempted to connect to your web server. Using the `-o` option, only the matching strings are sent to standard output. This output is filtered through the utility `uniq` with the **pipe** operator (`|`) to filter out duplicate entries: grep -Eo "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}" /srv/www/example.com/logs/access.log | uniq -In the next example, you can see an alternate pattern for matching an IP address in a different log. The following command searches the most recent `/var/log/auth.log` file for invalid login attempts: +The next example uses an alternative pattern for matching an IP address in a different log. The following command searches the most recent `/var/log/auth.log` file for invalid login attempts: grep -Eo "Invalid user.*([0-9]{1,3}\.){3}[0-9]{1,3}" /var/log/auth.log -You can split the above command into two layers to output a quick list of IP addresses with failed login attempts to your system: +You can split the above command into two layers to output a list of IP addresses with failed login attempts to your system: grep "Invalid user" /var/log/auth.log | grep -Eo "([0-9]{1,3}\.){3}[0-9]{1,3}" | uniq -The `grep` tool, when accepting input from standard output, can filter the output of commands like `tail -F` to provide real-time monitoring of specific log events. Consider the following command: +`grep` can filter the output of commands such as `tail -F` to provide real-time monitoring of specific log events: tail ~/.procmail/procmail.log -F | grep "Subject" -In this case, `tail` follows the `~/procmail/procmail.log` file where the `procmail` mail filtering tool logs filtering. This output is passed to `grep`, which filters the stream and prints only lines that contain the string `Subject` and prints those lines. - -These examples outline several distinct ways that the `grep` tool is used to aid in the administration of Linux-based systems. Because grep operations are almost always non-destructive, it is easy to experiment with `grep` to generate the kind of information you require from text files. +In this case, `tail` follows the `~/procmail/procmail.log` file. This output is passed to `grep`, which filters the stream and prints only lines that contain the string "Subject". ## Filtering Commands with Grep -Beyond its uses in shell scripting and log filtering, `grep` has many alternate uses. In the following example, `grep` filters the lengthy `tar` help text to more efficiently find the options for dealing with `bzip` files: +`grep` can be used to filter long help files. This command filters the `tar` help text to more efficiently find the options for dealing with `bzip` files: tar --help | grep "bzip" -`grep` is also useful for filtering the output of `ls` when listing the contents of directories with a large number of files. Take the following example: +`grep` is also useful for filtering the output of `ls` when listing the contents of directories with a large number of files: ls /usr/lib | grep "xml" -While there may be many files in the `/usr/lib` directory, the list of files with the string `xml` in their title may be more useful. - ## Grep Compressed Files with zgrep -The `zgrep` command functions identically to the grep command above; however, it adds the ability to run grep operations on files that have been compressed with gzip without requiring an extra compression and decompression step. Consider the following command, adapted from above to search an older compressed log: +`zgrep` command functions identically to the grep command above; however, it adds the ability to run grep operations on files that have been compressed with gzip without requiring an extra compression and decompression step. To search an older compressed log: zgrep -Eo "Invalid user.*([0-9]{1,3}\.){3}[0-9]{1,3}" /var/log/auth.log.2.gz diff --git a/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug.md b/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug.md index ba8377e0f18..5429d2061c7 100644 --- a/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug.md +++ b/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug.md @@ -34,7 +34,7 @@ These difficulties, along with the lack of support for some desired features suc ## What To Expect From NeoVim? -During NeoVim's short life, two outstanding features have already been implemented: asynchronous plugins, and the Remote Procedure Call (RPC) API for controlling NeoVim programatically. +During NeoVim's short life, two outstanding features have already been implemented: asynchronous plugins, and the Remote Procedure Call (RPC) API for controlling NeoVim programmatically. Asynchronous plugins make it possible for plugins to run as background processes without interfering with the main editor process. diff --git a/docs/tools-reference/tools/introduction-to-vim-customization.md b/docs/tools-reference/tools/introduction-to-vim-customization.md old mode 100755 new mode 100644 index 8be51db84e6..0ff13d71f79 --- a/docs/tools-reference/tools/introduction-to-vim-customization.md +++ b/docs/tools-reference/tools/introduction-to-vim-customization.md @@ -21,12 +21,11 @@ external_resources: - '[The Vim Tips Wiki](http://vim.wikia.com/wiki/Vim_Tips_Wiki)' --- - -![Vim_banner](/docs/assets/Vim_Customization.jpg) +![Introduction to Vim Customization](/docs/assets/Vim_Customization.jpg) ## What Is Vim? -Vim is one of a handful of text editors ubiquitous in nearly all Unix systems. While an initial learning curve is unavoidable, Vim aims to be a hyperefficient text editor and provides an extensive plug-in system which can be configured to user preferences. It also supports hundreds of programming languages and file extentions. +Vim is one of a handful of text editors ubiquitous in nearly all Unix systems. While an initial learning curve is unavoidable, Vim aims to be a hyperefficient text editor and provides an extensive plug-in system which can be configured to user preferences. It also supports hundreds of programming languages and file extensions. This guide details the configuration of the Vim text editor and aims at those who are interested in taking the next step into customization. An array of methods for customizing Vim's execution of certain tasks and response to user input will be introduced, along with a plug-in management system. diff --git a/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu.md b/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu.md index a0576c094a9..75ba0ae4693 100644 --- a/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu.md +++ b/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu.md @@ -3,10 +3,11 @@ author: name: Linode email: docs@linode.com description: 'Restricting remote users to their home directories, only allowing access to SFTP for transferring files.' +og_description: 'SFTP Jails restricits remote users to their home directories.' keywords: ["sftp", "sftp jail", "openssh", "ssh jail"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['security/sftp-jails/'] -modified: 2014-04-16 +modified: 2018-01-29 modified_by: name: Linode published: 2010-01-06 @@ -16,7 +17,7 @@ external_resources: - '[An Introduction to Users and Groups](/docs/tools-reference/linux-users-and-groups)' --- -As the system administrator for your Linode, you may want to give your users the ability to securely upload files to your server. The most common way to do this is to allow file transfers via SFTP, which uses SSH to provide encryption. This means you need to give your users SSH logins. But, by default, SSH users are able to view your Linode's entire filesystem, which may not be desirable. +As the system administrator for your Linode, you may want to give your users the ability to securely upload files to your server. The most common way to do this is to allow file transfers via Secure File Transfer Protocol (SFTP), which uses SSH to provide encryption. This requires that you give your users SSH logins. However, by default SSH users are able to view your Linode's entire filesystem, which may not be desirable. ![Limiting Access with SFTP Jails on Debian and Ubuntu](/docs/assets/limiting-access-with-sftp-jails-on-debian-and-ubuntu.png) @@ -26,21 +27,19 @@ These instructions will work for Ubuntu 9.04, Debian 5, and later. Unfortunately ## Configure OpenSSH -First, you need to configure OpenSSH. - 1. Edit your `/etc/ssh/sshd_config` file with your favorite text editor: vim /etc/ssh/sshd_config 2. Add or modify the `Subsystem sftp` line to look like the following: - {{< file-excerpt "/etc/ssh/sshd\_config" >}} + {{< file-excerpt "/etc/ssh/sshd_config" >}} Subsystem sftp internal-sftp {{< /file-excerpt >}} 3. Add this block of settings to the end of the file: - {{< file-excerpt "/etc/ssh/sshd\_config" >}} + {{< file-excerpt "/etc/ssh/sshd_config" >}} Match Group filetransfer ChrootDirectory %h X11Forwarding no @@ -48,17 +47,17 @@ Match Group filetransfer ForceCommand internal-sftp {{< /file-excerpt >}} - Save the changes to your file. + Save the changes to your file. 4. Restart OpenSSH: service ssh restart -OpenSSH has been successfully modified. + OpenSSH has been successfully modified. ## Modify User Accounts -In this section, we'll set up the correct new groups, ownership, and permissions for your user accounts. +This section will set up the correct groups, ownership, and permissions for your user accounts. 1. Create a system group for users whom you want to restrict to SFTP access: @@ -78,4 +77,29 @@ In this section, we'll set up the correct new groups, ownership, and permissions mkdir docs public_html chown username:filetransfer * -Your users should now be able to log into their accounts via SFTP and transfer files to and from their assigned subdirectories, but they shouldn't be able to see the rest of your Linode's filesystem. + Your users should now be able to log into their accounts via SFTP and transfer files to and from their assigned subdirectories, but they shouldn't be able to see the rest of your Linode's filesystem. + +## Use SFTP + +1. Use `sftp` from the terminal: + + sftp username@ + + You can use the `help` command to see what commands you have access too within the SFTP shell. You have the ability to `pwd`, `cd` and `ls`, for instance. There are also commands like `lpwd`, that will print the **local** working directory. In the local home directory type `touch test.txt` + +2. Transfer local files to the remote system: + + cd docs + put test.txt + +3. Transfer files to the local system from the remote system: + + get test.txt + +4. You can test the file permissions by navigating to a different directory within the SFTP shell, and trying to transfer a file. + + sftp> put test.txt /tmp/ + Uploading test.txt to /tmp/ + remote open("/tmp/"): Failure + +5. Exit the session with the `exit` command. diff --git a/docs/tools-reference/tools/modify-file-permissions-with-chmod.md b/docs/tools-reference/tools/modify-file-permissions-with-chmod.md index 6ff3055e4f1..9df8a9d62cf 100644 --- a/docs/tools-reference/tools/modify-file-permissions-with-chmod.md +++ b/docs/tools-reference/tools/modify-file-permissions-with-chmod.md @@ -6,9 +6,9 @@ description: 'Use the chmod command to modify file permissions on your Linode.' keywords: ["TAGS=chmod", "commands", "reference", "file permissions"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['linux-tools/common-commands/chmod/','tools-reference/modify-file-permissions-with-chmod/'] -modified: 2011-07-07 +modified: 2018-01-24 modified_by: - name: Linode + name: Sam Foo published: 2010-07-01 title: Modify File Permissions with chmod external_resources: @@ -16,91 +16,145 @@ external_resources: - '[Administration Basics](/docs/using-linux/administration-basics)' --- -Unix-like systems, including the Linux systems that run on the Linode platform, have an incredibly robust access control system that allows systems administrators to effectively permit multiple users access to a single system without giving every user access to every file on the file system. The `chmod` command is the best and easiest way to modify these file permissions. +![Modify File Permissions with chmod](/docs/assets/modify_file_permissions_with_chmod_smg.png "Modify File Permissions with chmod") + +## chmod Lets You Change Read and Write Permissions in Linux -![Title graphic](/docs/assets/modify_file_permissions_with_chmod_smg.png) +Unix-like systems, including the Linux systems that run on the Linode platform, have an incredibly robust access control system that allows systems administrators to effectively permit multiple users access to a single system without giving every user access to every file on the file system. The `chmod` command is the best and easiest way to modify these file permissions. -This document provides a brief overview of file permissions and the operation of the `chmod` command in addition to a number of practical examples and applications of `chmod`. If you find this guide helpful, please consider our [basic administration practices guide](/docs/using-linux/administration-basics) and the [Linux users and groups guide](/docs/tools-reference/linux-users-and-groups/). +This guide provides a brief overview of file permissions and the operation of the `chmod` command in addition to a number of practical examples and applications of `chmod`. If you find this guide helpful, please consider our [basic administration practices guide](/docs/using-linux/administration-basics) and the [Linux users and groups guide](/docs/tools-reference/linux-users-and-groups/) next. -## Using Chmod +## How to Use chmod In this guide, `chmod` refers to recent versions of `chmod` such as those provided by the GNU project. By default, `chmod` is included with all images provided by Linode, and as part of the common "base" selection of packages provided in nearly all distributions of Linux-based operating systems. -
- +### Linux File Permission Basics + +All file system objects on Unix-like systems have three main types of permissions: read, write, and execute access. Permissions are bestowed upon three possible classes: the user, the usergroup, and all system users. + +To view the file permissions of a set of files, use: -### File Permission Basics + ls -lha -All file system objects on Unix-like systems have three main types of permissions: read, write, and execute access. Furthermore, permissions are bestowed upon three possible classes: the user that owns the file system object, the user group that owns the file system object, and all system users. To view the file permissions of a set of files, use the `ls -lha` command. The output will resemble the following: +In the first column of the output, there are 10 characters that represent the permission bits. To understand why they are called permission bits, see the section on [octal notation](#octal-notation) below. - drwxr-xr-x 2 username username 4.0K 2009-08-13 10:16 docs - -rw-r--r-- 1 username username 8.1K 2009-07-09 16:23 roster.py - lrwxrwxrwx 2 username username 4.0K 2009-08-13 10:16 team.docs + drwxr-xr-x 2 user group 4.0K 2009-08-13 10:16 docs + -rw-r--r-- 1 user group 8.1K 2009-07-09 16:23 roster.py + lrwxrwxrwx 2 user group 4.0K 2009-08-13 10:16 team.docs -The first block of data contains information regarding the file permissions and settings, and we'll focus on that in this section. The first column specifies the type of file system object. `d` indicates that the object is a directory. `-` indicates that the object is a normal file. `l` indicates that the object is a symbolic link. +A way to understand the meaning of this column is to divide the bits into groups. -The remaining characters represent the core permissions. In groupings of three, these characters represent read, write, and execute permissions. The first grouping represents the owners permissions, the second grouping represents the usergroup that owns the file, and the final grouping represents the permissions of all users on the system. +File type | User | Group | Global +--------------------|-------|-------|--------- + `d` Directory | `rwx` | `r-x` | `r-x` + `-` Regular file | `rw-` | `r--` | `r--` + `l` Symbolic Link | `rwx` | `rwx` | `rwx` -Any object on the file system may have any combination of permissions. Note, access to the files targeted by symbolic links is controlled by the permissions of the targeted file, not the permissions of the link object. There are [additional file permissions](/docs/tools-reference/linux-users-and-groups#additional-file-permissions) that control other aspects of access to files. +The first character represents the type of file. The remaining nine bits in groups of three represent the permissions for the user, group, and global respectively. Each stands for: -### The Chmod Command +* `r`: **R**ead +* `w`: **W**rite +* `x`: e**X**ecute -Consider the following invocation of `chmod`: +Note that access to files targeted by symbolic links is controlled by the permissions of the targeted file, not the permissions of the link object. There are [additional file permissions](/docs/tools-reference/linux-users-and-groups#additional-file-permissions) that control other aspects of access to files. + +### chmod Command Syntax and Options + +The format of a `chmod` command is: + + chmod [who][+,-,=][permissions] filename + +Consider the following `chmod` command: chmod g+w ~/group-project.txt -This grants all members of the usergroup that owns the file `~/group-project.txt` write permissions. To remove this permission later, switch the `+` sign to a `-`, as in the following example. +This grants all members of the usergroup that owns the file `~/group-project.txt` write permissions. Other possible options to change permissions of targeted users are: + +Who (Letter) | Meaning +-------------|--------- + u | user + g | group + o | others + a | all + +The `+` operator grants permissions whereas the `-` operator takes away permissions. Copying permissions is also possible: - chmod g-w ~/group-project.txt + chmod g=u ~/group-project.txt -You can specify multiple permissions by separating them with a comma, as in the following example: +The parameter `g=u` means grant group permissions to be same as the user's. + +Multiple permissions can be specified by separating them with a comma, as in the following example: chmod g+w,o-rw,a+x ~/group-project-files/ -This adds write permissions to the usergroup members, and removes read and write permissions from the "other" users of the system. Finally the `a+x` adds the execute permissions to all categories. This value may also be specified as `+x`. If no category is specified, the permission is added or subtracted to all permission categories. In this notation the owner of the file is referred to as the `user` (e.g. `u+x`). +This adds write permissions to the usergroup members, and removes read and write permissions from the "other" users of the system. Finally the `a+x` adds the execute permissions to all categories. This value may also be specified as `+x`. If no category is specified, the permission is added or subtracted to all permission categories. + +In this notation the owner of the file is referred to as the `user` (e.g. `u+x`). chmod -R +w,g=rw,o-rw, ~/group-project-files/ -The `-R` option applies the modification to the permissions recursively to the directory specified and all of its contents. You may also specify file permissions using the `=` sign rather than the `+` or `-` operators to signify only the specified permissions if you need to specify a set of permissions without relation to the current state of the file's permission. +The `-R` option applies the modification to the permissions recursively to the directory specified and to all of its contents. + +### How to Use Octal Notation for File Permissions + +Another method for setting permissions is through octal notation. + +Here is example of a file permission that is equivalent to `chmod u=rwx,go=rx`. + + chmod 750 ~/group-project.txt -The notation used in this document thus far can be confusing for particularly complex file permission requirements. `chmod` provides an alternate "octal" notation that you may find more sensible: +The permissions for this file are `- rwx r-x ---`. - 0 --- indicates no permissions - 1 --x indicates execute permissions - 2 -w- indicates write permissions - 3 -wx indicates write and execute permissions - 4 r-- indicates read permissions - 5 r-x indicates read and execute permissions - 6 rw- indicates read and write permissions - 7 rwx indicates read, write, and execute permissions +Disregarding the first bit, each bit that is occupied with a `-` can be replaced with a `0` while `r`, `w`, or `x` is represented by a `1`. The resulting conversion is: -Each digit is independent of the other two. Therefore, 777 creates read, write, and execute privileges for all users. 744, which is a typical default permission, allows read, write, and execute permissions for the owner, and read permissions for the group and world users. To chmod the "roster.py" file so that the owner can read, write, and execute the file, the group can read and execute the file, and the world can execute the file, issue the following command: + 111 101 000 - chmod 751 ~/roster.py +This is called octal notation because the binary numbers are converted to base-8 by using the digits 0 to 7: -Either notation is equivalent, and you may chose to use whichever form is more able to clearly express your desires for the permissions. +Binary | Octal | Permission +-------|-------|----------- + 000 | 0 | --- + 001 | 1 | --x + 010 | 2 | -w- + 011 | 3 | -wx + 100 | 4 | r-- + 101 | 5 | r-x + 110 | 6 | rw- + 111 | 7 | rwx + +Each digit is independent of the other two. Therefore, `750` means the current user can read, write, and execute while the group and others cannot write. + +`744`, which is a typical default permission, allows read, write, and execute permissions for the owner, and read permissions for the group and "world" users. + +Either notation is equivalent, and you may choose to use whichever form more clearly expresses your permissions needs. ## Making a File Executable -Issue the following command to change the file permissions so that any user can execute the file "~/group-project.py": +The following examples changes the file permissions so that any user can execute the file "~/group-project.py": chmod +x ~/group-project.py ## Restore Default File Permissions -In many cases the default permissions for files on a Unix system are often `600` or `644`. Permissions of `600` mean that the owner has full read and write access to the file, while no other user can access the file. Permissions of `644` mean that the owner of the file has read and write access, while the group members and other users on the system only have read access. Issue one of the following commands to achieve these "default" permissions: +The default permissions for files on a Unix system are often `600` or `644`. Permissions of `600` mean that the owner has full read and write access to the file, while no other user can access the file. Permissions of `644` mean that the owner of the file has read and write access, while the group members and other users on the system only have read access. + +Issue one of the following examples to achieve these "default" permissions: chmod 600 ~/roster.txt chmod 644 ~/gigs.txt -For executable files, the equivalent settings would be `700` and `755` which correspond to `600` and `644` except with execution permission. Issue one of the following commands to achieve these executable "default" permissions: +For executable files, the equivalent settings would be `700` and `755` which correspond to `600` and `644` except with execution permission. + +Use one of the following examples to achieve these executable "default" permissions: chmod 700 ~/generate-notes.py chmod 755 ~/regenerate-notes.py -## Removing all Group and World Permissions +## Restrict File Access: Remove all Group and World Permissions + +There are a number of cases where administrators and users should restrict access to files, particularly files that contain passwords and other sensitive information. The configuration files for msmtp and Fetchmail (`~/.msmtprc` and `~/.fetchmailrc`) are two common examples. -There are a number of cases where administrators and users would be wise to restrict access to files, particularly files that contain passwords and other sensitive information. The configuration files for msmtp and fetchmail (`~/.msmtprc` and `~/.fetchmailrc`) are two common examples. You can remove all access to these files with commands in one of the following forms: +You can remove all access to these files with commands in one of the following forms: chmod 600 .msmtprc chmod g-rwx,o-rwx .fetchmail diff --git a/docs/tools-reference/tools/schedule-tasks-with-cron.md b/docs/tools-reference/tools/schedule-tasks-with-cron.md index c06bd514d02..2562403cc92 100644 --- a/docs/tools-reference/tools/schedule-tasks-with-cron.md +++ b/docs/tools-reference/tools/schedule-tasks-with-cron.md @@ -80,7 +80,7 @@ These represent the interval of repetition with which tasks are processed. In or - The `/` operator "steps through" or "skips" a specified units. Therefore `*/3` in the hour field, will run the specified job, at 12:00 am, 3:00am, 6:00am, 9:00am, 12:00pm, 3:00pm, 6:00pm, and 9:00pm. A `*/3` in the "day of month" field, runs the given task on the 3rd, 6th, 9th, 12th, 15th, 18th, 21st, and 29th of every month. - The `,` operator allows you to specify a list of times for repetition. Comma separated lists of times must not contain a space. -- The `-` operator specifies a range of values. `2-4` in the month field will run a task in Feburary, March, and April. `1-5` in the day of week field will run a task every weekday. +- The `-` operator specifies a range of values. `2-4` in the month field will run a task in February, March, and April. `1-5` in the day of week field will run a task every weekday. Fields in crontab entries are separated by spaces. If you are using special cron operators, be particularly careful to avoid unintentional spaces in your command. diff --git a/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head.md b/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head.md index 2d51ed5d3ae..7c4dae8bc1c 100644 --- a/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head.md +++ b/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head.md @@ -2,60 +2,57 @@ author: name: Linode email: docs@linode.com -description: Use the Linux command head to view the beginning of a text file -keywords: ["head", "linux", "common commands", "cli"] +description: 'Use the Linux command head to view the beginning of a text file' +og_description: 'Head is a Unix command line utility for viewing the beginning of text files. This guide shows how to use head and gives practical examples.' +keywords: ["head", "linux", "utilities", "cli", "text files"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['linux-tools/common-commands/head/'] -modified: 2011-04-19 +modified: 2018-02-02 modified_by: name: Linode published: 2010-10-25 title: View the Beginning of Text Files with head --- -The `head` command is a core Linux utility used to view the very beginning of a text file. Despite its narrow functionality, `head` is useful in many systems administration and scripting tasks. For similar functionality that address the end of a file, consider the tail utility. +The `head` command is a core Linux utility used to view the very beginning of a text file. Despite its narrow functionality, `head` is useful in many systems administration and scripting tasks. For similar functionality that address the end of a file, use the [tail](/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/) utility instead. -![Title graphic](/docs/assets/view_the_beginning_of_text_files_with_head_smg.png) +![View Beginning of Files with Head](/docs/assets/view_the_beginning_of_text_files_with_head_smg.png) ## Using head -Consider the following invocation: +List the file or files you want to view after the `head` command: head /etc/rc.conf -This will print the first 10 lines of the `/etc/rc.conf` file to standard output on the terminal. Thus, `head` is useful for a number of different situations such as determining the contents of a file if the file names are ambiguous. +This will print the first 10 lines of `/etc/rc.conf` to standard output. If a file has fewer than 10 lines, `head` will print the entire file. -If a file has fewer than 10 lines, `head` will print the entire file. +### Control the Length of Output -### Control the Length of Output with head - -With the `-n` option, the number of lines that `head` outputs can be modified. For example: +With the `-n` option, the number of lines that `head` outputs can be modified: head -n 24 /etc/logrotate.conf -This prints the first 24 lines of the `/etc/logrotate.conf` file to the terminal. You can specify the number of lines before or after you declare the file. Therefore, the following command is equivalent to the previous command: +This prints the first 24 lines of `/etc/logrotate.conf` to the terminal. You can specify the number of lines before or after you declare the file: head /etc/logrotate.conf -n 24 If a file is smaller than the specified number of lines, `head` will print the entire file. -### View the Beginning of Multiple Files with head +### View Multiple Files -`head` can process multiple files at once. Consider the following: +`head` can process multiple files at once: -{{< output >}} -$ ls -example roster + head example.txt names.txt -$ head * -==> example <== +{{< output >}} +==> example.txt <== lollipop The Joke Jockey to the Fair Simon's Fancy Truckles -==> roster <== +==> names.txt <== John Susan Michael @@ -68,18 +65,24 @@ George Jacob {{< /output >}} -`head` outputs the first ten lines of each file by default. If you are using `head` to read more than one file, you may also use the `-n` option to control the number of lines printed. +To view the first line of every file in a directory, you can use the `-n` option combined with the `*` wild card: + + head -n 1 * + +### View Command Output -### Combine head with Other Commands +By using the pipe operator, `head` can be used to filter the output of commands as well as files: -`head` can be used to filter the output of commands as well as files. For instance: + cat --help | head -n 2 {{< output >}} -% cat --help | head -n 2 Usage: cat [OPTION]... [FILE]... Concatenate FILE(s), or standard input, to standard output. +{{< /output >}} + + ls /usr/lib | head -$ ls /usr/lib | head +{{< output >}} alsa-lib ao apr.exp @@ -91,5 +94,3 @@ avahi awk bmp {{< /output >}} - -In the first example, `head` filters the full output of `cat --help` to generate only the first two lines of the output of the command. In the second example, `head` prints the first ten lines of the output of the `ls` command. diff --git a/docs/troubleshooting/rescue-and-rebuild.md b/docs/troubleshooting/rescue-and-rebuild.md index e4411b2e571..ee18c34167b 100644 --- a/docs/troubleshooting/rescue-and-rebuild.md +++ b/docs/troubleshooting/rescue-and-rebuild.md @@ -95,7 +95,7 @@ Now you can read and write to files on the mounted disk. Change root is the process of changing your working root directory. When you change root (chroot) to your Linode root disk, you will be able to run commands as though you are logged into that system. -Chroot will allow you to change user passwords, remove/install packages, and do other system maintanance and recovery tasks. +Chroot will allow you to change user passwords, remove/install packages, and do other system maintenance and recovery tasks. Before you can use chroot, you need to mount your root disk with execute permissions: diff --git a/docs/uptime/analytics/google-analytics-for-websites.md b/docs/uptime/analytics/google-analytics-for-websites.md index 70716b294b3..5b403d3a623 100644 --- a/docs/uptime/analytics/google-analytics-for-websites.md +++ b/docs/uptime/analytics/google-analytics-for-websites.md @@ -43,7 +43,7 @@ Prior to adding Google Analytics to your website, you need to sign up and set up 5. You will then be given your **Tracking ID** and **tracking code**. Make note of both of these items, you will use them later. -You can now add this code to your website through [PHP](#add-through-php), or an [external Javascript file](#add-through-external-javascript). +You can now add this code to your website through [PHP](#add-through-php), or an [external JavaScript file](#add-through-external-javascript). ## Add Through PHP @@ -110,15 +110,15 @@ If the `` tag of your website contains other variables, please adjust the You have now added Google Analytics to your website! It may take up to twenty-four hours for any data concerning your website to show up on Google Analytics. -## Add Through External Javascript +## Add Through External JavaScript -If your website cannot use PHP (its files end in `.html`, `.htm`, or otherwise), you can insert the Google Analytics code through your terminal, using an external Javascript file and the `sed` command. +If your website cannot use PHP (its files end in `.html`, `.htm`, or otherwise), you can insert the Google Analytics code through your terminal, using an external JavaScript file and the `sed` command. 1. Navigate to the directory your website is hosted in: cd /var/www/example.com/public_html -2. (Optional) If you already have a Javascript folder, change directories to that folder. Otherwise, create a Javascript folder now: +2. (Optional) If you already have a JavaScript folder, change directories to that folder. Otherwise, create a JavaScript folder now: mkdir javascript @@ -156,7 +156,7 @@ Should you decide to disable the demographics feature at a later date, simply re Change the `.html` ending to match the ending of your website's files. {{< /note >}} -8. To check that the code has been successfully inserted into your `.html` files, you can either open up your website in your browser and view the source code, or view a file in your terminal. The folllowing should appear in conjunction to your `` tag: +8. To check that the code has been successfully inserted into your `.html` files, you can either open up your website in your browser and view the source code, or view a file in your terminal. The following should appear in conjunction to your `` tag: {{< file-excerpt "/var/www/example.com/public_html/index.html" >}} diff --git a/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server.md b/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server.md index 9004943e009..a30751778af 100644 --- a/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server.md +++ b/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server.md @@ -154,7 +154,7 @@ Version 1.5.7 is the current version and may be different by the time you read t ### Configure -1. Navigate to the OWA installation page in your webbrowser. Replace `your.domain` with your Linode's IP address or FQDN: +1. Navigate to the OWA installation page in your web browser. Replace `your.domain` with your Linode's IP address or FQDN: http://your.domain/owa/ diff --git a/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql.md b/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql.md index b899fdc3762..b9ef6f8899c 100644 --- a/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql.md +++ b/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql.md @@ -19,7 +19,7 @@ external_resources: [Zipkin](http://zipkin.io/) is a used for capturing timing data, it also has a centralized repository, and a microweb server that allows you to display, and search through spans and traces of your distributed programs or websites. -We can configure Zipkin by [deploying it in a Docker container](http://zipkin.io/pages/quickstart). Using this approach, we can match the latest version of Zipkin by just pulling down the latest images. You can Isolate the Docker service and dependencies to just the container(s), and chose where you want your data to persist. Most importantly, by using Docker, you can spend more time focused on data anlysis, instead of spending time on configuring a Zipkin as a service. +We can configure Zipkin by [deploying it in a Docker container](http://zipkin.io/pages/quickstart). Using this approach, we can match the latest version of Zipkin by just pulling down the latest images. You can Isolate the Docker service and dependencies to just the container(s), and chose where you want your data to persist. Most importantly, by using Docker, you can spend more time focused on data analysis, instead of spending time on configuring a Zipkin as a service. ## Before You Begin @@ -81,7 +81,7 @@ The current stable version of Docker Compose is 1.16.1. Check for the latest ver sudo dnf install git -7. Use git to retrieve the Zipkin Docker-compose yaml files at [openzipkin/docker-zipkin](https://github.com/openzipkin/docker-zipkin). This is one of the powerful features of Docker, these files hold all of the system level configurations we need, to run several different Zipkin configurations. Like, Zipkin with MySQL, Zipkin with elasticsearch, and Zipkin with Kakfa. +7. Use git to retrieve the Zipkin Docker-compose YAML files at [openzipkin/docker-zipkin](https://github.com/openzipkin/docker-zipkin). This is one of the powerful features of Docker, these files hold all of the system level configurations we need, to run several different Zipkin configurations. Like, Zipkin with MySQL, Zipkin with elasticsearch, and Zipkin with Kakfa. cd ~ git clone https://github.com/openzipkin/docker-zipkin.git @@ -90,7 +90,7 @@ The current stable version of Docker Compose is 1.16.1. Check for the latest ver sudo dnf install mysql -### Configure Docker +## Configure Docker The Docker service will manage your containers, the container's host, Zipkin services, and your MYSQL server. @@ -98,7 +98,7 @@ The Docker service will manage your containers, the container's host, Zipkin ser Docker is in charge of starting and stopping these services automatically when the host system is rebooted. it'll help us to map the ports from the container to the host's ports and it'll manage exporting the MySQL database files onto the host system. Docker can check to see if the container has failed, and restart it for us too. The host is in charge of running the actual Docker service and setting the firewall correctly. -Notice that the Zipkin container will expose port 9411 for its service, and the MySQL container will expose port 3306. We'll use the Docker-compose yaml files to forward port 9411 to the host's port 9411, so that the container will be accesible on the internet. +Notice that the Zipkin container will expose port 9411 for its service, and the MySQL container will expose port 3306. We'll use the Docker-compose YAML files to forward port 9411 to the host's port 9411, so that the container will be accessible on the internet. #### Zipkin Server Firewall Concepts @@ -112,7 +112,7 @@ Our goal is to set up the Zipkin Server for: * Web service: showing searches of time data * lock down access to only our web and analyst machines. -### Zipkin Server Firewall +## Zipkin Server Firewall 1. Create a new zone in our firewall called **zipkin** @@ -142,11 +142,11 @@ Our goal is to set up the Zipkin Server for: sudo firewall-cmd --zone=zipkin --list-all -### Docker-Compose Configuration +## Docker-Compose Configuration The **docker-compose yml** files will control which system configuration we can use. We're going to select a MySQL configuration for storage. -1. Copy the MySQL docker-compose yaml file to your home directory and rename it docker-init.yml as we're going to need to make a few changes: +1. Copy the MySQL docker-compose YAML file to your home directory and rename it docker-init.yml as we're going to need to make a few changes: cd ~ cp docker-zipkin/docker-compose.yml docker-init.yml @@ -229,7 +229,7 @@ volumes: docker-compose -f docker-init.yml down -### Backup Span/Trace Data +## Backup Span/Trace Data There are 2 different backup methods: using MySQL , and using sysadmin. @@ -271,7 +271,7 @@ We can just zip or tar the exported database files on the host system. Since we 3. Remember to start your Zipkin services if they're still needed. They will not restart even on a reboot because we have explicitly shut them down. -#### Testing the Zipkin Service +## Testing the Zipkin Service 1. Easiest way to do this is by using your web browser on your analyst machine. Log into your analyst machine, bring up your browser, and type in the following URL: diff --git a/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer.md b/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer.md index 405ce2d0fa1..45a111d9804 100644 --- a/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer.md +++ b/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer.md @@ -2,7 +2,7 @@ author: name: Linode email: docs@linode.com -description: 'Use Nginx as a Front-end Proxy and Software Load-Balancer.' +description: 'Use NGINX as a Front-end Proxy and Software Load-Balancer.' keywords: ["apache", "nginx", "proxy", "load balancer", "load balancing", "web server", "http", "use nginx as proxy", "use nginx as load-balancer", "front-end proxy", "cluster"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['web-servers/nginx/configuration/front-end-proxy-and-software-load-balancing/','websites/loadbalancing/Use-Nginx-for-Proxy-Services-and-Software-Load-Balancing/','uptime/loadbalancing/use-nginx-for-proxy-services-and-software-load-balancing/index.cfm/','uptime/loadbalancing/use-nginx-for-proxy-services-and-software-load-balancing/', 'uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer/'] @@ -10,48 +10,48 @@ modified: 2017-03-23 modified_by: name: Linode published: 2010-05-11 -title: 'Use Nginx as a Front-end Proxy and Software Load Balancer' +title: 'Use NGINX as a Front-end Proxy and Software Load Balancer' external_resources: - - '[nginx Proxy Module](http://wiki.nginx.org/NginxHttpProxyModule)' + - '[NGINX Proxy Module](http://wiki.nginx.org/NginxHttpProxyModule)' - '[HTTP Upstream Module](http://wiki.nginx.org/NginxHttpUpstreamModule)' - - '[nginx Configuration](/docs/websites/nginx/basic-nginx-configuration)' + - '[NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration)' --- -The nginx web server can act as a very capable software load balancer, in addition to its more traditional roles serving static content over HTTP and dynamic content using FastCGI handlers for scripts. Because ngnix uses a non-threaded, event-driven architecture, it is able to outperform web servers like Apache. This is particularly true in deployments that receive heavy loads. +The NGINX web server can act as a very capable software load balancer, in addition to its more traditional roles serving static content over HTTP and dynamic content using FastCGI handlers for scripts. Because NGINX uses a non-threaded, event-driven architecture, it is able to outperform web servers like Apache. This is particularly true in deployments that receive heavy loads. -![Use Nginx as a Front-end Proxy and Software Load Balancer](/docs/assets/use_nginx_as_a_frontend_proxy_and_software_load_balancer.png "Use Nginx as a Front-end Proxy and Software Load Balancer") +![Use NGINX as a Front-end Proxy and Software Load Balancer](/docs/assets/use_nginx_as_a_frontend_proxy_and_software_load_balancer.png "Use Nginx as a Front-end Proxy and Software Load Balancer") -Using a proxy is helpful when the demands of serving a single website outgrow the capabilities of a single machine. Additionally, there are some web frameworks, like [Seaside](/docs/frameworks/seaside/) and Ruby On Rails's Mongrel server, that deploy applications on framework-specific web servers. While these single-purpose servers provide powerful application services, they are not suitable for hosting entire applications. In these cases, using nginx as a front-end proxy to pass only the essential requests to the application server is a viable means of unifying dynamic content with static content and providing a stable production environment. +Using a proxy is helpful when the demands of serving a single website outgrow the capabilities of a single machine. Additionally, there are some web frameworks, like [Seaside](/docs/frameworks/seaside/) and Ruby On Rails's Mongrel server, that deploy applications on framework-specific web servers. While these single-purpose servers provide powerful application services, they are not suitable for hosting entire applications. In these cases, using NGINX as a front-end proxy to pass only the essential requests to the application server is a viable means of unifying dynamic content with static content and providing a stable production environment. -This document provides an overview of using nginx as a front-end proxy server for other HTTP servers, and as a software load balancer to distribute traffic across a cluster of machines providing HTTP resources. For an introductory guide to configuring nginx, please see our [Basic Nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) guide. If you want a simple nginx deployment with content that uses PHP or Perl scripts, consider following one of our [Installing Nginx](/docs/web-servers/nginx/) guides. +This document provides an overview of using NGINX as a front-end proxy server for other HTTP servers, and as a software load balancer to distribute traffic across a cluster of machines providing HTTP resources. For an introductory guide to configuring NGINX, please see our [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) guide. If you want a simple NGINX deployment with content that uses PHP or Perl scripts, consider following one of our [Installing NGINX](/docs/web-servers/nginx/) guides. ## Prerequisites Before we begin, make sure you have completed the following: - Follow the [Getting Started](/docs/getting-started/) guide. -- Install the [nginx server](/docs/web-servers/nginx/). -- Familiarize yourself with [Basic Nginx Configuration](/docs/websites/nginx/basic-nginx-configuration). +- Install the [NGINX server](/docs/web-servers/nginx/). +- Familiarize yourself with [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration). If you're new to Linux server administration, you may be interested in our [introduction to Linux basics](/docs/tools-reference/introduction-to-linux-concepts) guide, [Beginner's Guide](/docs/beginners-guide/) and [Administration Basics](/docs/using-linux/administration-basics) guide. -## Front-End Proxy Services with Nginx: How It Works +## Front-End Proxy Services with NGINX: How It Works -When a request reaches the nginx front-end proxy server, here's an overview of the process that occurs: +When a request reaches the NGINX front-end proxy server, here's an overview of the process that occurs: -1. nginx receives a request for a resource. -2. nginx sends a second *proxied* request to a specified server, and gets a response. -3. nginx returns the result of that request to the original requester. +1. NGINX receives a request for a resource. +2. NGINX sends a second *proxied* request to a specified server, and gets a response. +3. NGINX returns the result of that request to the original requester. ## Configure Apache for Port Listening -In this section, you'll configure Apache to listen on an alternate port so it can respond to the nginx front end. +In this section, you'll configure Apache to listen on an alternate port so it can respond to the NGINX front end. {{< note >}} This guide assumes you are using Apache 2.4. Some path names will be slightly different if you are using an older version. {{< /note >}} -1. The first thing you will configure is the port on which Apache listens. This needs to be a port other than 80, so that you can proxy requests to Apache on the alternate port. This has the added benefit of preventing conflicts between Apache and nginx listening on the same port. First, open up the `/etc/apache2/ports.conf` file for editing, and configure it as shown below: +1. The first thing you will configure is the port on which Apache listens. This needs to be a port other than 80, so that you can proxy requests to Apache on the alternate port. This has the added benefit of preventing conflicts between Apache and NGINX listening on the same port. First, open up the `/etc/apache2/ports.conf` file for editing, and configure it as shown below: sudo nano /etc/apache2/ports.conf @@ -101,7 +101,7 @@ Listen 8000 {{< /file-excerpt >}} -3. In the `/etc/apache2/apache2.conf` file, comment out the `LogFormat {User-Agent}` line. Then, add a forward so that Apache will log the original user’s IP address in the access logs instead of nginx's IP address (which would be listed as 127.0.0.1). +3. In the `/etc/apache2/apache2.conf` file, comment out the `LogFormat {User-Agent}` line. Then, add a forward so that Apache will log the original user’s IP address in the access logs instead of NGINX's IP address (which would be listed as 127.0.0.1). sudo nano /etc/apache2/apache2.conf @@ -120,7 +120,7 @@ LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-A service apache restart -6. Edit the `/etc/nginx/proxy_params` file. These settings are a good starting point for optimal forwarding of proxy requests from Nginx to Apache: +6. Edit the `/etc/nginx/proxy_params` file. These settings are a good starting point for optimal forwarding of proxy requests from NGINX to Apache: sudo nano /etc/nginx/proxy_params @@ -143,7 +143,7 @@ proxy_read_timeout 300; {{< /file >}} -7. Create the nginx `example.com` virtual host file at `/etc/nginx/sites-available/example.com`. Make sure you specify the same document root here that you did for Apache (for example, `/var/www/html/example.com`). This will ensure that nginx can deliver static files directly without passing the request to Apache. Static files (like JavaScript, CSS, images, PDF files, static HTML files, etc.) can be delivered much faster with nginx than Apache. +7. Create the NGINX `example.com` virtual host file at `/etc/nginx/sites-available/example.com`. Make sure you specify the same document root here that you did for Apache (for example, `/var/www/html/example.com`). This will ensure that NGINX can deliver static files directly without passing the request to Apache. Static files (like JavaScript, CSS, images, PDF files, static HTML files, etc.) can be delivered much faster with NGINX than Apache. sudo nano /etc/nginx/sites-available/example.com @@ -174,7 +174,7 @@ server { There are some additional `location` directives to add in the `server` section of the `/etc/nginx/sites-available/example.com` file. You will probably need these directives, but it's possible that you may not, depending on your nginx and Apache configuration. -8. Add a `location` directive to make nginx refuse all requests for files beginning with the characters `.ht`. There's a similar directive in nearly every default Apache configuration. This directive is useful if your Apache deployment relies on settings from `.htaccess` and `.htpasswd`. +8. Add a `location` directive to make NGINX refuse all requests for files beginning with the characters `.ht`. There's a similar directive in nearly every default Apache configuration. This directive is useful if your Apache deployment relies on settings from `.htaccess` and `.htpasswd`. {{< file-excerpt "/etc/nginx/sites-available/example.com" nginx >}} location ~ /\.ht { @@ -205,7 +205,7 @@ location / { **Response:** `http://192.168.3.105/teams/~example/wiki/PracticeSchedule/` -10. For most conventional proxy setups, you will also want to add a `proxy_redirect` specification to your `location` directive blocks. This directive rewrites the HTTP headers that nginx receives from the proxy server to make them appear as if they were generated by the nginx server. +10. For most conventional proxy setups, you will also want to add a `proxy_redirect` specification to your `location` directive blocks. This directive rewrites the HTTP headers that NGINX receives from the proxy server to make them appear as if they were generated by the NGINX server. {{< file-excerpt "example.com.vhost proxy location directive" nginx >}} location /pictures/ { @@ -220,7 +220,7 @@ location /pictures/ { ## Software Load Balancing -In addition to using nginx as a front-end proxy to pass requests to other web servers, nginx can also serve as the front end for clusters of servers, and even as a software load balancer. +In addition to using NGINX as a front-end proxy to pass requests to other web servers, NGINX can also serve as the front end for clusters of servers, and even as a software load balancer. ### Basic HTTP Clustering @@ -255,7 +255,7 @@ upstream appcluster { {{< /file-excerpt >}} -In this example, in the `server` directive block, nginx is configured to listen for requests on a specific IP address and port (e.g. `192.0.2.0` and `80`), and respond to requests for the domains `example.com` and `www.example.com`. All requests for resources at this domain (e.g. `/`) will be passed to the `http://appcluster` server established in the `upstream` directive. +In this example, in the `server` directive block, NGINX is configured to listen for requests on a specific IP address and port (e.g. `192.0.2.0` and `80`), and respond to requests for the domains `example.com` and `www.example.com`. All requests for resources at this domain (e.g. `/`) will be passed to the `http://appcluster` server established in the `upstream` directive. The `upstream` directive establishes the round-robin load balancer. Within this block eight servers are listed, each running on a distinct hostname and port combination. @@ -265,7 +265,7 @@ The `upstream` directive establishes the round-robin load balancer. Within this ### Advanced Load Balancing -nginx also allows you to control the behavior of the `upstream` resource cluster beyond a simple round-robin setup. The simplest modification is to add the `ip_hash` directive to the configuration block. This causes requests from the same IP address to be routed to the same back-end server. Consider the following example excerpt: +NGINX also allows you to control the behavior of the `upstream` resource cluster beyond a simple round-robin setup. The simplest modification is to add the `ip_hash` directive to the configuration block. This causes requests from the same IP address to be routed to the same back-end server. Consider the following example excerpt: {{< file-excerpt "/etc/nginx/sites-available/example.com" nginx >}} upstream appcluster { @@ -279,7 +279,7 @@ upstream appcluster { {{< /file-excerpt >}} -Here, the `ip_hash` directive causes nginx to attempt to match requests originating from a single IP address with the same back-end component. If a component server is unreachable, nginx will route those connections to an alternate component. +Here, the `ip_hash` directive causes NGINX to attempt to match requests originating from a single IP address with the same back-end component. If a component server is unreachable, NGINX will route those connections to an alternate component. {{< note >}} If a server needs to be taken offline for an extended period of time, append the `down` argument, as shown in the entry for `galloway.example.com:8801`. This will prevent missed connections from attempting to hit a component of the server which is down. @@ -301,11 +301,11 @@ upstream appcluster { {{< /file-excerpt >}} -Using these arguments, you can use nginx to manage the behavior and distribution of load across a cluster of servers: +Using these arguments, you can use NGINX to manage the behavior and distribution of load across a cluster of servers: - By default, each server listed in an upstream cluster has a weight of `1`. The argument `weight=[number]` sets a specific weight. Higher numbers receive more weight. - In the example above, the components running on ports `8801` and `8802` are treated identically by nginx, as the default value for `weight` is `1`. The components running on `8803`, `8804`, and `8807` will receive twice as much traffic as the first two components. The components running on `8805` and `8806` will receive four times as much traffic as the ones on `8801` and `8802` and twice much traffic as the components on `8803`, `8804`, and `8807`. + In the example above, the components running on ports `8801` and `8802` are treated identically by NGINX, as the default value for `weight` is `1`. The components running on `8803`, `8804`, and `8807` will receive twice as much traffic as the first two components. The components running on `8805` and `8806` will receive four times as much traffic as the ones on `8801` and `8802` and twice much traffic as the components on `8803`, `8804`, and `8807`. - `max_fails=[number]` specifies the number of unsuccessful attempts at communication with an upstream component before it is considered inoperative. To prevent components from ever being marked as inoperative, even if they are unreachable, set this value to `0`. The default value for `max_fails` is `1`. 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/). diff --git a/docs/uptime/monitoring/monitor-systems-logwatch.md b/docs/uptime/monitoring/monitor-systems-logwatch.md index ee4e0dbe4cd..c014a7cadf4 100644 --- a/docs/uptime/monitoring/monitor-systems-logwatch.md +++ b/docs/uptime/monitoring/monitor-systems-logwatch.md @@ -146,12 +146,12 @@ The default Logwatch configuration will output the digest to your Linode's conso The Logwatch digest can be sent to local users or external email addresses, in plain text or HTML formats. {{< note >}} -Prior to sending mail externally or locally ensure you have Sendmail installed on the Linode. If you choose to use a different MTA client, change the `mailer` line in the Logwatch configuration file to contain the directory of your choosen MTA, or alias `/usr/sbin/sendmail` to your MTA. +Prior to sending mail externally or locally ensure you have Sendmail installed on the Linode. If you choose to use a different MTA client, change the `mailer` line in the Logwatch configuration file to contain the directory of your chosen MTA, or alias `/usr/sbin/sendmail` to your MTA. If using Arch, and you followed the above install instructions, Sendmail is already aliased to msmtp. {{< /note >}} -1. Change the `Output` value to `mail`. If you wish to recieve the messages in HTML format change the `Format` value to `html`. +1. Change the `Output` value to `mail`. If you wish to receive the messages in HTML format change the `Format` value to `html`. 2. Change the `MailTo` address to a valid email address, or local account user. For example, to send mail to the `root` user change the line to read: diff --git a/docs/uptime/monitoring/ossec-ids-debian-7.md b/docs/uptime/monitoring/ossec-ids-debian-7.md index 891ad139835..1cbbabd9f77 100644 --- a/docs/uptime/monitoring/ossec-ids-debian-7.md +++ b/docs/uptime/monitoring/ossec-ids-debian-7.md @@ -15,7 +15,7 @@ modified_by: published: 2015-02-05 title: Install and Configure OSSEC on Debian 7 external_resources: - - '[http://www.ossec.net/](http://www.ossec.net)' + - '[OSSEC](https://ossec.github.io/)' --- @@ -23,7 +23,7 @@ OSSEC is an open-source, host-based intrusion detection system (**HIDS**) that p When installed and configured, OSSEC will provide a real-time view of what's taking place in your server or servers in a server/agent mode. -This guide covers how to install and configure OSSEC on a single Linode running Debian 7 in such a manner that if a file is modified, added or deleted, OSSEC will notify you by email in real-time. OSSEC can also provide notifications for other acitivies. +This guide covers how to install and configure OSSEC on a single Linode running Debian 7 in such a manner that if a file is modified, added or deleted, OSSEC will notify you by email in real-time. OSSEC can also provide notifications for other activities. {{< 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. diff --git a/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache.md b/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache.md index 57950827b36..ce0f289ff17 100644 --- a/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache.md +++ b/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache.md @@ -23,7 +23,7 @@ external_resources: --- -![Apache_banner_image](/docs/assets/RBAC_Apache.jpg) +![Rule-based Access Control for Apache](/docs/assets/RBAC_Apache.jpg) Apache provides a number of tools that allow administrators to control access to specific resources provided by servers. You may already be familiar with [authentication based access controls](/docs/web-servers/apache/configuration/configuration-structure), which requires that visitors authenticate to the server before gaining access to resources. diff --git a/docs/web-servers/apache/apache-2-web-server-on-centos-5.md b/docs/web-servers/apache/apache-2-web-server-on-centos-5.md index fdb6e434869..acf03221335 100644 --- a/docs/web-servers/apache/apache-2-web-server-on-centos-5.md +++ b/docs/web-servers/apache/apache-2-web-server-on-centos-5.md @@ -175,7 +175,7 @@ To see if a module is enabled, look in "conf" files for lines beginning with `Lo To disable an existing module (at your own risk) edit the file in question, and comment out the `LoadModule` statement by prefixing the line with a hash (e.g. `#`). -To get a list of available Apache modules modules in the CentOS repository use the following commands: +To get a list of available Apache modules in the CentOS repository use the following commands: yum search mod_ diff --git a/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny.md b/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny.md index 94271336bcd..029d7fc6d7b 100644 --- a/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny.md +++ b/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny.md @@ -156,7 +156,7 @@ To disable a module that is currently enabled, use the inverse command: a2dismod [module-name] -To get a list of available Apache modules modules in the Debian repository use the following command: +To get a list of available Apache modules in the Debian repository use the following command: apt-cache search libapache2* diff --git a/docs/web-servers/apache/apache-web-server-debian-8.md b/docs/web-servers/apache/apache-web-server-debian-8.md index 10623536503..d4425c0f464 100644 --- a/docs/web-servers/apache/apache-web-server-debian-8.md +++ b/docs/web-servers/apache/apache-web-server-debian-8.md @@ -16,7 +16,7 @@ external_resources: - '[Apache Configuration](/docs/web-servers/apache/configuration/)' --- -![apache_banner](/docs/assets/Apache_Web_Server_on_Debian_8_Jessie_smg.jpg) +![How to Install and Configure Apache Web Server on Debian 8](/docs/assets/Apache_Web_Server_on_Debian_8_Jessie_smg.jpg) The *Apache HTTP Web Sever* (Apache) is an open source web application for deploying web servers. This guide explains how to install and configure an Apache web server on Debian 8. diff --git a/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04.md b/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04.md index 1b9198c665b..89398ffce4c 100644 --- a/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04.md +++ b/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04.md @@ -16,7 +16,7 @@ external_resources: - '[Apache Configuration](/docs/web-servers/apache/configuration/)' --- -![apache_ubuntu_banner](/docs/assets/Apache_Web_Server_on_Ubuntu_1404_LTS_smg.jpg) +![How to Install and Configure Apache Web Server on Ubuntu 14.04 LTS](/docs/assets/Apache_Web_Server_on_Ubuntu_1404_LTS_smg.jpg) The *Apache HTTP Web Sever* (Apache) is an open source web application for deploying web servers. This guide explains how to install and configure an Apache web server on Ubuntu 14.04 LTS. diff --git a/docs/web-servers/apache/how-to-set-up-htaccess-on-apache.md b/docs/web-servers/apache/how-to-set-up-htaccess-on-apache.md index abc29b88911..b618c990d10 100644 --- a/docs/web-servers/apache/how-to-set-up-htaccess-on-apache.md +++ b/docs/web-servers/apache/how-to-set-up-htaccess-on-apache.md @@ -74,7 +74,7 @@ By default, .htaccess isn't available. To enable it you will need to edit the co By default, someone visiting your website can view the directory and file structure, and gain access to files on the web server. It's best practice to restrict directory access, so that a visitor to example.com would have to be familiar with files on the server in order to see them. One way you can restrict this is through .htaccess. ### Create .htaccess -1. CMS systems such as Wordpress create .htaccess configurations by default. This guide assumes that no .htaccess file exists, so you will have to create one manually. Navigate to your site's root directory: +1. CMS systems such as WordPress create .htaccess configurations by default. This guide assumes that no .htaccess file exists, so you will have to create one manually. Navigate to your site's root directory: cd /var/www/html/example.com/public_html @@ -174,7 +174,7 @@ The next parameter is the Unix path to the file that is requested in the URL. Th ### Set the 404 Error Page -When a visitor attempts to access a page or resource that doesn't exist (for example by following a broken link or typing an incorrect URL,) the server will respond with a 404 error code. It is important that users receive feedback explaning the error. By default, Apache will display an error page in the event of a 404 error. However, most sites provide a customized error page. You can use .htaccess settings to let Apache know what error page you would like displayed whenever a user attempts to access a nonexistent page. +When a visitor attempts to access a page or resource that doesn't exist (for example by following a broken link or typing an incorrect URL,) the server will respond with a 404 error code. It is important that users receive feedback explaining the error. By default, Apache will display an error page in the event of a 404 error. However, most sites provide a customized error page. You can use .htaccess settings to let Apache know what error page you would like displayed whenever a user attempts to access a nonexistent page. 1. This will redirect all requests for nonexistent documents to a page in the project root directory called `404.html. Open the .htaccess file and add the following line: diff --git a/docs/web-servers/apache/install-and-configure-apache-on-centos-7.md b/docs/web-servers/apache/install-and-configure-apache-on-centos-7.md index ec375bb8dda..928ef0618b9 100644 --- a/docs/web-servers/apache/install-and-configure-apache-on-centos-7.md +++ b/docs/web-servers/apache/install-and-configure-apache-on-centos-7.md @@ -17,7 +17,7 @@ external_resources: image: https://linode.com/docs/assets/apache-centos7-smg.png --- -![apache_centOS7_banner](/docs/assets/How_to_Install_Apache_on_CentOS_7_smg.jpg) +![How to Install and Configure Apache Web Server on CentOS 7](/docs/assets/How_to_Install_Apache_on_CentOS_7_smg.jpg) Apache is an [open-source web server](https://httpd.apache.org/ABOUT_APACHE.html) that can be configured to serve a single or multiple websites using the same Linode. This guide explains how to install and configure the Apache web server on CentOS 7. diff --git a/docs/web-servers/apache/run-php-cgi-apache-centos-6.md b/docs/web-servers/apache/run-php-cgi-apache-centos-6.md index d8eb4a254d3..0e579bd7826 100644 --- a/docs/web-servers/apache/run-php-cgi-apache-centos-6.md +++ b/docs/web-servers/apache/run-php-cgi-apache-centos-6.md @@ -17,7 +17,7 @@ external_resources: - '[Apache 2.2 CGI documentation](http://httpd.apache.org/docs/2.2/howto/cgi.html)' --- -In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the proccess of setting up Apache and PHP CGI. +In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the process of setting up Apache and PHP CGI. {{< 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. @@ -30,7 +30,7 @@ This guide is written for a non-root user. Commands that require elevated privil To check your hostname run: hostname - hostname -f + hostname -f The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN). diff --git a/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04.md b/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04.md index 0d5941d5355..e19dce904ef 100644 --- a/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04.md +++ b/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04.md @@ -17,7 +17,7 @@ external_resources: - '[Apache 2.2 CGI documentation](http://httpd.apache.org/docs/2.2/howto/cgi.html)' --- -In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the proccess of setting up Apache and PHP CGI. +In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the process of setting up Apache and PHP CGI. {{< 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. @@ -30,7 +30,7 @@ This guide is written for a non-root user. Commands that require elevated privil To check your hostname, run: hostname - hostname -f + hostname -f The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN). @@ -108,7 +108,7 @@ This may not be ideal if you have multiple users running publicly accessible scr {{< file-excerpt "Apache Virtual Hosting Configuration Block" apache >}} - AssignUserId webeditor webgroup + AssignUserId webeditor webgroup {{< /file-excerpt >}} diff --git a/docs/web-servers/apache/run-php-cgi-apapache-debian-7.md b/docs/web-servers/apache/run-php-cgi-apapache-debian-7.md index 02e352e853b..f02041ea8d4 100644 --- a/docs/web-servers/apache/run-php-cgi-apapache-debian-7.md +++ b/docs/web-servers/apache/run-php-cgi-apapache-debian-7.md @@ -17,7 +17,7 @@ external_resources: - '[Apache 2.2 CGI documentation](http://httpd.apache.org/docs/2.2/howto/cgi.html)' --- -In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the proccess of setting up Apache and PHP CGI. +In instances where running the `mod_php` module to run PHP scripts on Apache is not sufficient, PHP can be run as a CGI binary. Combined with the `itk` multi-processing module (MPM), PHP scripts can be run as user processes in a per-virtual host setup. This guide will walk users through the process of setting up Apache and PHP CGI. {{< 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. 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: diff --git a/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13.md b/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13.md index 6acd4ea99da..9c79fad8828 100644 --- a/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13.md +++ b/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13.md @@ -135,7 +135,7 @@ Create a test PHP script as follows: {{< /file >}} -Visit `/test.php` on your site to verfify PHP-FastCGI is operating correctly. Congratulations, you've successfully configured PHP-FastCGI for dynamic content using the Cherokee web server! +Visit `/test.php` on your site to verify PHP-FastCGI is operating correctly. Congratulations, you've successfully configured PHP-FastCGI for dynamic content using the Cherokee web server! # More Information diff --git a/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md b/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md index 4a106c0d8a1..87bd57e02c0 100644 --- a/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md +++ b/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md @@ -117,7 +117,7 @@ Restart Cherokee by clicking the "Save" button under the left page navigation li {{< /file >}} -Visit "/test.php" on your site to verfify PHP-FastCGI is operating correctly. You should see the standard PHPInfo page. Congratulations, you've successfully configured PHP-FastCGI for dynamic content using the Cherokee web server! +Visit "/test.php" on your site to verify PHP-FastCGI is operating correctly. You should see the standard PHPInfo page. Congratulations, you've successfully configured PHP-FastCGI for dynamic content using the Cherokee web server! # More Information diff --git a/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04.md b/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04.md index 3cec572b5fc..f178a10babd 100644 --- a/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04.md +++ b/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04.md @@ -49,7 +49,7 @@ Instead of installing Apache, MySQL, and PHP separately, tasksel offers a conven sudo tasksel install lamp-server -3. Enter the prompt for a MySQL root password. See the steps below for Apache configurations, creating a virtual host, and installation of PHP modules for Wordpress installation. +3. Enter the prompt for a MySQL root password. See the steps below for Apache configurations, creating a virtual host, and installation of PHP modules for WordPress installation. ## Apache @@ -224,8 +224,7 @@ The beginning of the `php.ini` file contains examples commented out with a semic sudo systemctl restart apache2 - - {{< note >}} + {{< note >}} If you plan on using your LAMP stack to host a WordPress server, download these PHP modules: `apt install php-curl php-gd php-mbstring php-mcrypt php-xml php-xmlrpc` {{< /note >}} diff --git a/docs/web-servers/lamp/lamp-on-ubuntu-14-04.md b/docs/web-servers/lamp/lamp-on-ubuntu-14-04.md index 0032b33d605..9cbf8214914 100644 --- a/docs/web-servers/lamp/lamp-on-ubuntu-14-04.md +++ b/docs/web-servers/lamp/lamp-on-ubuntu-14-04.md @@ -146,7 +146,7 @@ a2dissite example.com.conf Enter MySQL's root password, and you'll be presented with a MySQL prompt. -4. Create a database and a user with permissions for it. In this example the databse is called `webdata`, the user `webuser` and password `password`: +4. Create a database and a user with permissions for it. In this example the database is called `webdata`, the user `webuser` and password `password`: create database webdata; grant all on webdata.* to 'webuser' identified by 'password'; diff --git a/docs/web-servers/lamp/lamp-server-on-centos-5.md b/docs/web-servers/lamp/lamp-server-on-centos-5.md index bc8db7b0608..d9c5af33e6e 100644 --- a/docs/web-servers/lamp/lamp-server-on-centos-5.md +++ b/docs/web-servers/lamp/lamp-server-on-centos-5.md @@ -112,7 +112,7 @@ Anytime you change an option in your `vhost.conf` file, or any other Apache conf ## Install and Configure MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-debian-5-lenny.md b/docs/web-servers/lamp/lamp-server-on-debian-5-lenny.md index a96d3f591ba..90c3a2dae2f 100644 --- a/docs/web-servers/lamp/lamp-server-on-debian-5-lenny.md +++ b/docs/web-servers/lamp/lamp-server-on-debian-5-lenny.md @@ -115,7 +115,7 @@ Assuming that you have configured the DNS for your domain to point to your Linod ## Install and Configure MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze.md b/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze.md index fde32d170b2..83b3fa7cf9a 100644 --- a/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze.md +++ b/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze.md @@ -117,7 +117,7 @@ Assuming that you have configured the DNS for your domain to point to your Linod ## Install and Configure MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy.md b/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy.md index 88f10530055..49edbbd78af 100644 --- a/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy.md +++ b/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy.md @@ -132,7 +132,7 @@ Assuming that you have configured the DNS for your domain to point to your Linod Enter the root password. The MySQL prompt will appear. -2. Create a database and a user with permissions for it. In this example the databse is called `webdata`, the user `webuser` and password `password`: +2. Create a database and a user with permissions for it. In this example the database is called `webdata`, the user `webuser` and password `password`: create database webdata; grant all on webdata.* to 'webuser' identified by 'password'; diff --git a/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick.md b/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick.md index 4838fa99a9f..3344e121d67 100644 --- a/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick.md +++ b/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick.md @@ -106,7 +106,7 @@ After enabling, disabling, or modifying any part of your Apache configuration, y ## Install and Configure the MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty.md b/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty.md index efec1191c94..142c8f13679 100644 --- a/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty.md +++ b/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty.md @@ -106,7 +106,7 @@ After enabling, disabling, or modifying any part of your Apache configuration, y ## Install and Configure the MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric.md b/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric.md index e268d9774ab..d0800543d29 100644 --- a/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric.md +++ b/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric.md @@ -106,7 +106,7 @@ After enabling, disabling, or modifying any part of your Apache configuration, y ## Install and Configure the MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component of web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy.md b/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy.md index 1f538982d95..04040fc6c0f 100644 --- a/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy.md +++ b/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy.md @@ -132,7 +132,7 @@ The `a2dissite` command is the inverse of `a2ensite`. After enabling, disabling, ## Install and Configure MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty.md b/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty.md index 8a88dd663c4..d734023547b 100644 --- a/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty.md +++ b/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty.md @@ -130,7 +130,7 @@ The `a2dissite` command is the inverse of `a2ensite`. After enabling, disabling, ## Install and Configure MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo.md b/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo.md index 58bd76673a6..208518074d1 100644 --- a/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo.md +++ b/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo.md @@ -119,7 +119,7 @@ Any time that you change an option in any of your Apache configuration files, re ## Install and Configure the MySQL Database Server -MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including Wordpress and Drupal. +MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool-chains. It is used to store data for many popular applications, including WordPress and Drupal. ### Install MySQL diff --git a/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04.md b/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04.md index 46715ff53db..6b0d28a3201 100644 --- a/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04.md +++ b/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04.md @@ -28,7 +28,7 @@ This guide describes an alternative to the *LAMP* (Linux, Apache, MySQL, and PHP - 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, see the [Linux Users and Groups Guide](/docs/tools-reference/linux-users-and-groups). @@ -84,7 +84,7 @@ index index.html index.php; {{< /file-excerpt >}} -3. The nginx example configuration uses `/var/www/` as a document root, but Ubuntu uses `/var/www/html` as a standard. Additionally, Linode guides encourage the standard practice of using a subdirectory called `public_html` to exclude web files that shouldn't be publicly accesible. Update the `root` directive to match these conventions: +3. The nginx example configuration uses `/var/www/` as a document root, but Ubuntu uses `/var/www/html` as a standard. Additionally, Linode guides encourage the standard practice of using a subdirectory called `public_html` to exclude web files that shouldn't be publicly accessible. Update the `root` directive to match these conventions: {{< file-excerpt "/etc/nginx/sites-available/example.com" nginx >}} root /var/www/html/example.com/public_html; diff --git a/docs/web-servers/lemp/lemp-server-on-centos-5.md b/docs/web-servers/lemp/lemp-server-on-centos-5.md index 9c71a801a15..7b76698676a 100644 --- a/docs/web-servers/lemp/lemp-server-on-centos-5.md +++ b/docs/web-servers/lemp/lemp-server-on-centos-5.md @@ -296,5 +296,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/centos-5) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/centos-5) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/centos-5) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/centos-5) diff --git a/docs/web-servers/lemp/lemp-server-on-debian-5-lenny.md b/docs/web-servers/lemp/lemp-server-on-debian-5-lenny.md index be89073f207..1bc77ade74c 100644 --- a/docs/web-servers/lemp/lemp-server-on-debian-5-lenny.md +++ b/docs/web-servers/lemp/lemp-server-on-debian-5-lenny.md @@ -131,15 +131,15 @@ Regardless of the method you use to install nginx, you will need to configure `s {{< file-excerpt "nginx.conf" >}} server { - listen 80; - server_name www.example.com example.com; - access_log /srv/www/example.com/logs/access.log; - error_log /srv/www/example.com/logs/error.log; - - location / { - root /srv/www/example.com/public_html; - index index.html index.htm; - } + listen 80; + server_name www.example.com example.com; + access_log /srv/www/example.com/logs/access.log; + error_log /srv/www/example.com/logs/error.log; + + location / { + root /srv/www/example.com/public_html; + index index.html index.htm; + } } {{< /file-excerpt >}} @@ -336,5 +336,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/debian-5-lenny) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-5-lenny) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-5-lenny) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/debian-5-lenny) diff --git a/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze.md b/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze.md index c2877020e0d..834813213b6 100644 --- a/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze.md +++ b/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze.md @@ -306,5 +306,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/debian-6-squeeze) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-6-squeeze) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-6-squeeze) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/debian-6-squeeze) diff --git a/docs/web-servers/lemp/lemp-server-on-fedora-13.md b/docs/web-servers/lemp/lemp-server-on-fedora-13.md index be530bc26e8..1ebc91312c1 100644 --- a/docs/web-servers/lemp/lemp-server-on-fedora-13.md +++ b/docs/web-servers/lemp/lemp-server-on-fedora-13.md @@ -282,5 +282,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/fedora-13) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/fedora-13) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/fedora-13) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/fedora-13) diff --git a/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid.md b/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid.md index 83e203b06ef..beb2719e025 100644 --- a/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid.md +++ b/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid.md @@ -304,5 +304,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/ubuntu-10-04-lucid) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/ubuntu-10-04-lucid) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/ubuntu-10-04-lucid) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/ubuntu-10-04-lucid) diff --git a/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick.md b/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick.md index 39bd6701e73..b45e84eb6d7 100644 --- a/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick.md +++ b/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick.md @@ -304,5 +304,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/ubuntu-10-10-maverick) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/ubuntu-10-10-maverick) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/ubuntu-10-10-maverick) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/ubuntu-10-10-maverick) diff --git a/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic.md b/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic.md index 3c82fdfa8db..bdb93efd39e 100644 --- a/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic.md +++ b/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic.md @@ -321,5 +321,5 @@ You may wish to consult the following resources for additional information on th - [Basic nginx Configuration](/docs/websites/nginx/basic-nginx-configuration) - [Clustered Web Servers and Software Load Balancing with nginx](/docs/uptime/loadbalancing/how-to-use-nginx-as-a-front-end-proxy-server-and-software-load-balancer) - [Deploy CGI and Perl Scripts with Perl-FastCGI and nginx](/docs/web-servers/nginx/perl-fastcgi/debian-5-lenny) -- [Use PostgeSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-5-lenny) +- [Use PostgreSQL as an Alternative to MySQL for data storage](/docs/databases/postgresql/debian-5-lenny) - [Deploy Python Applications with uWSGI and nginx](/docs/web-servers/nginx/python-uwsgi/debian-5-lenny) diff --git a/docs/web-servers/lemp/lemp-stack-on-debian-8.md b/docs/web-servers/lemp/lemp-stack-on-debian-8.md index 3941704b1bf..99a5b9f15fb 100644 --- a/docs/web-servers/lemp/lemp-stack-on-debian-8.md +++ b/docs/web-servers/lemp/lemp-stack-on-debian-8.md @@ -22,14 +22,14 @@ external_resources: This document describes a compatible alternative to the **LAMP** (Linux, Apache, MySQL, and PHP) stack, known as **LEMP**. The LEMP stack replaces the Apache web server component (which is the "A" in LAMP) with Nginx (pronounced "engine x", providing the "E" in LEMP). LEMP is comprised of a variety of open source software used to build and run web servers. {{< 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. +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 Prior to installing your LEMP stack ensure that: -- You have followed the [Getting Started](/docs/getting-started) and [Securing Your Server](/docs/security/securing-your-server) guides. +- You have followed the [Getting Started](/docs/getting-started/) and [Securing Your Server](/docs/security/securing-your-server/) guides. - You have a hostname and *fully-qualified domain name* (FQDN) configured on your Linode. To ensure this is set run: hostname @@ -43,7 +43,7 @@ Prior to installing your LEMP stack ensure that: ## Install the Nginx Web Server -There are several ways to install Nginx. The method used here retrieves packages from the Debian Project's software repository and provides a stable and tested version of the web server. For other options to install Nginx, you can read our [Installing Nginx on Debian 8](/docs/websites/nginx/nginx-web-server-debian-8) guide. +There are several ways to install Nginx. The method used here retrieves packages from the Debian Project's software repository and provides a stable and tested version of the web server. For other options to install Nginx, you can read our [Installing Nginx on Debian 8](/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/) guide. Install Nginx: @@ -86,7 +86,7 @@ server { The source file is saved, and the site can be re-enabled at any time. -For more information regarding Nginx configuration options, check out our [Overview of Nginx Configuration](/docs/websites/nginx/basic-nginx-configuration). +For more information regarding Nginx configuration options, check out our [Overview of Nginx Configuration](/docs/websites/nginx/basic-nginx-configuration/). ## Deploy PHP with FastCGI diff --git a/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny.md b/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny.md index dac718d79a1..1d8ee635eea 100644 --- a/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny.md +++ b/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny.md @@ -154,7 +154,7 @@ No matter what you decide, we recommend developing some sort of systematic metho # Running Scripts with mod\_fastcgi -If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod\_perl, mod\_python, and mod\_php. If you're familar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. +If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod_perl, mod_python, and mod_php. If you're familiar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. To set up FastCGI you need to make sure that an interpreter is installed on your system that is capable of running your scripts. Perl version 5.10.0-19 is installed in Debian Lenny by default. Issue one of the following commands: diff --git a/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci.md b/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci.md index 4aeb8005e53..29ea952e7e7 100644 --- a/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci.md +++ b/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci.md @@ -188,7 +188,7 @@ No matter what you decide, we recommend developing some sort of systematic metho ## Running Scripts with mod\_fastcgi -If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod\_perl, mod\_python, and mod\_php. If you're familar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. +If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod_perl, mod_python, and mod_php. If you're familiar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. To set up FastCGI you need to make sure that an interpreter is installed on your system that is capable of running your scripts. Perl version 5.14.2 is included in Ubuntu by default. Issue one of the following commands: diff --git a/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-9-10-karmic.md b/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-9-10-karmic.md index 588538e051c..c067dcde003 100644 --- a/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-9-10-karmic.md +++ b/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-9-10-karmic.md @@ -207,7 +207,7 @@ No matter what you decide, we recommend developing some sort of systematic metho # Running Scripts with mod\_fastcgi -If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod\_perl, mod\_python, and mod\_php. If you're familar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. +If you need your web server to execute dynamic content, the preferred way to accomplish this with lighttpd is to run these scripts using FastCGI. To run a script, FastCGI externalizes the interpreter for the script for dynamic web applications from the web server rather than running the scripts "inside" the web server. This is in contrast to the common Apache-based approaches such as mod_perl, mod_python, and mod_php. If you're familiar with Apache this might seem foreign and/or antiquated, but in high-traffic situations doing things this way is often more efficient and effective. To set up FastCGI you need to make sure that an interpreter is installed on your system that is capable of running your scripts. Perl version 5.10.0-19 is included in Ubuntu by default. Issue one of the following commands: diff --git a/docs/web-servers/nginx/how-to-configure-nginx.md b/docs/web-servers/nginx/how-to-configure-nginx.md index 70828f7b940..428579c76b3 100644 --- a/docs/web-servers/nginx/how-to-configure-nginx.md +++ b/docs/web-servers/nginx/how-to-configure-nginx.md @@ -42,7 +42,7 @@ Before we begin, make sure you have completed the following: - Install the [nginx server](/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/). - The steps required in this guide require root privileges. Be sure to run the steps below as `root` or with the **sudo** prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. -If you're new to Linux server administration, you may also be interested in our [Beginner's Guide](/docs/beginners-guide/) and [Administration Basics Guide](/docs/using-linux/administration-basics). +If you're new to Linux server administration, you may also be interested in our [Beginner's Guide](/docs/beginners-guide/) and [Administration Basics Guide](/docs/using-linux/administration-basics/). ## Before You Start @@ -54,7 +54,7 @@ Sometimes, server configuration files can get so corrupted or convoluted that th cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.backup -For even better restoration options, we recommend making regular [backups](/docs/platform/backup-service) of your nginx configuration. You might want to store your entire `/etc/nginx/` directory in a [Git](/docs/linux-tools/version-control/git) repository so you can save the original settings and all the versions from all your different changes. Another option is to periodically create dated copies of your files. You can accomplish this by issuing the following command: +For even better restoration options, we recommend making regular [backups](/docs/platform/backup-service/) of your nginx configuration. You might want to store your entire `/etc/nginx/` directory in a [Git](/docs/linux-tools/version-control/git/) repository so you can save the original settings and all the versions from all your different changes. Another option is to periodically create dated copies of your files. You can accomplish this by issuing the following command: cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.$(date "+%b_%d_%Y_%H.%M.%S") diff --git a/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy.md b/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy.md new file mode 100644 index 00000000000..4289f5153cc --- /dev/null +++ b/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy.md @@ -0,0 +1,244 @@ +--- +deprecated: false +author: + name: Linode Community + email: contribute@linode.com +description: 'Install Nginx and Deploy a StartSSL Certificate on Debian 7 (Wheezy).' +keywords: ["startssl", "nginx", "install nginx", "ssl certificate", "debian 7", "wheezy", "nginx repositories", "certificate signing request", " CSR", "domain name)"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['websites/nginx/startssl-wth-latest-nginx-debian-7/','websites/nginx/how-to-install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/','websites/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/'] +modified: 2015-07-13 +modified_by: + name: Ryan Laverdiere +published: 2014-10-20 +title: 'Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)' +contributor: + name: Ryan Laverdiere + link: https://github.com/capecodrailfan +--- + + +This guide is going to show you how to install the latest stable version of Nginx on Debian Wheezy. It will also deploy a free SSL certificate from StartSSL that will get you an A on the [Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/). In order to achieve an "A" on the test, we are going to configure Nginx to prefer server ciphers, only use strong ciphers, and disable vulnerable protocols SSLv2 and SSLv3. + +### Prerequisites + +This article assumes that you already have Debian 7 Wheezy running on a Linode. If you do not, follow the [Getting Started guide](https://www.linode.com/docs/getting-started) and them come back here. + +Please note, in order to obtain an SSL certificate for your Linode, you must have registered a domain name, and have access to an email account like webmaster@yourdomain.com. This is necessary for StartSSL to verify that you have control of the domain you are requesting an SSL certificate for. + +All of the commands below should be executed as the ``root`` user. + +### Add the Nginx Debian Repository to Your Linode Package Sources + +1. Create a new file in `/etc/apt/sources.list.d/` that instructs the package manager to download packages from the Nginx repositories using your favorite text editor. Here we'll use `nano`, but you could also use `vi` or `emacs`. If you have not used Nano before, I highly recommend reading [Using Nano](https://www.linode.com/docs/tools-reference/tools/using-nano) before continuing. + + nano /etc/apt/sources.list.d/nginx.list + +2. Add the following lines to the file. Save your changes and exit your text editor. + + deb http://nginx.org/packages/debian/ wheezy nginx + deb-src http://nginx.org/packages/debian/ wheezy nginx + +3. Download the PGP key used to sign the packages in the Nginx repository using wget: + + wget http://nginx.org/keys/nginx_signing.key + +4. Import the PGP key into the keyring used by the package manager to verify the authenticity of packages downloaded from the repository: + + apt-key add nginx_signing.key + +5. Delete the PGP key from the file system: + + rm nginx_signing.key + +6. Update your list of available packages: + + apt-get update + +### Install Nginx + +1. Instruct the package manager to install the Nginx package: + + apt-get install nginx + +### Generate a Private Key and Certificate Signing Request (CSR) + +1. Create a directory to store your certificate and private key. On Debian systems, the default location for storing certificates and private keys is in `/etc/ssl/`. To keep things simple we are going to create a new `/etc/ssl/nginx` directory to store your certificate and private key for Nginx: + + mkdir /etc/ssl/nginx + +2. Navigate to the newly created directory: + + cd /etc/ssl/nginx + +3. Generate a 2048 bit RSA private key. If you are paranoid you could change 2048 to 4096 to create a 4096 bit private key. Currently, most certificate authorities are requiring customers to use a 2048 bit or higher RSA private key. + + openssl genrsa -out server.key 2048 + +4. Generate a certificate signing request (CSR). When prompted for a `Common Name`, be sure to enter the domain name that you will be using to access your Linode, all other fields can be filled as you see fit. Optionally, you may enter a sub domain, for instance www.yourdomain.com. This must be a domain that you have control over and which you can receive email sent to webmaster@yourdomain.com. Any certificate issued for *yourname*.yourdomain.com is also valid for yourdomain.com. + + openssl req -new -key server.key -out server.csr + + [![CSR Creation](/docs/assets/1751-CSR.jpg)](/docs/assets/1751-CSR.jpg) + +### Sign-up With StartSSL + +1. Launch a web browser and navigate to the [StartSSL Control Panel](https://www.startssl.com/?app=12). If this is your first time requesting a certificate from StartSSL, click on the "Sign-up" button. If you have already requested a certificate from StartSSL, log into your account, and skip to the next section. + + [![StartSSL Control Panel](/docs/assets/1752-StartSSL-Control-Panel-Preview.jpg)](/docs/assets/1752-StartSSL-Control-Panel.jpg) + +2. Provide the requested information and a click "Continue >> >>" + + [![StartSSL Sign-up Page](/docs/assets/1753-StartSSL-Register.jpg)](/docs/assets/1753-StartSSL-Register.jpg) + +3. A verification code will be sent to the email address provided. Log into your email account and provide the verification code. Then click "Continue >> >>". + +4. Once your email address has been verified. Choose to generate a high grade private key. This private key and certificate pair will be used to identify you to StartSSL. If you ever loose it, you will be unable to regain access to your account, make sure to backup this certificate and private key. + + [![StartSSL Generate Private Key Page](/docs/assets/1754-StartSSL-Generate-Private-Key.jpg)](/docs/assets/1754-StartSSL-Generate-Private-Key.jpg) + +5. Click "Install >> >>" to install your personal certificate into your browser to identify yourself to StartSSL. + + [![StartSSL Certificate Installation Page](/docs/assets/1755-StartSSL-Install-Certificate.jpg)](/docs/assets/1755-StartSSL-Install-Certificate.jpg) + +6. Click "Finish >> >>". + +You should now be logged into your StartSSL account. + +### Verify Your Domain Name with StartSSL + +1. If you have already verified your domain name within the past 30 days, you may skip to the next step. Click on the "Validations Wizard" button in your StartSSL account. + +2. Select "Domain Name Validation" and click "Continue >> >>". + + [![StartSSL Validation Wizard Start Page](/docs/assets/1756-StartSSL-Validation-Wizard-Preview.jpg)](/docs/assets/1756-StartSSL-Validation-Wizard.jpg) + +3. Enter your domain name and click "Continue >> >>". + + [![StartSSL Validation Wizard Domain Name Validation Page](/docs/assets/1757-StartSSL-Validation-Wizard-Domain-Preview.jpg)](/docs/assets/1757-StartSSL-Validation-Wizard-Domain.jpg) + +4. Choose an email address @ your domain that you access to and click "Continue >> >>". Note that the domain being used for this tutorial has been omitted from the screenshot below. + + [![StartSSL Validation Wizard Domain Control Email Validation Page](/docs/assets/1758-StartSSL-Validation-Wizard-Email-Preview.jpg)](/docs/assets/1758-StartSSL-Validation-Wizard-Email.jpg) + +5. A verification code should be sent to the email address selected. Access your email account and provide the verification code and click "Continue >> >>". + + [![StartSSL Validation Wizard Email Verification Code Page](/docs/assets/1759-StartSSL-Validation-Wizard-Validation-Preview.jpg)](/docs/assets/1759-StartSSL-Validation-Wizard-Validation.jpg) + +6. Your domain has now been verified. Click "Finish >> >>". + + ![StartSSL Validation Wizard Complete Page](/docs/assets/1760-StartSSL-Validation-Wizard-Complete-Preview.jpg) + +### Submit Your Certificate Signing Request to StartSSL + +1. Click on the "Certificates Wizard" button in your StartSSL account. + +2. From the "Certificate Target" drop down menu select "Web Server SSL/TLS Certificate" and click "Continue >> >>". + + [![StartSSL Certificates Wizard Start](/docs/assets/1761-StartSSL-Certificates-Wizard-Target-Preview.jpg)](/docs/assets/1761-StartSSL-Certificates-Wizard-Target.jpg) + +3. Click "Skip >> >>" to skip generating a RSA private key. In the previous step an RSA private key was generated before creating a certificate signing request. + + [![StartSSL Certificates Wizard Skip Creating a RSA Private Key](/docs/assets/1762-StartSSL-Certificates-Wizard-Private-Key-Preview.jpg)](/docs/assets/1762-StartSSL-Certificates-Wizard-Private-Key.jpg) + +4. Using the text editor of your choice, open up your certificate signing request and copy it. If you're using Putty on Windows, highlight the entire certificate signing request to copy it to the clipboard, then exit the text editor. + + nano /etc/ssl/nginx/server.csr + +5. Paste your certificate signing request into the empty text box and then click "Continue >> >>". + + [![StartSSL Certificates Wizard Submit CSR](/docs/assets/1763-StartSSL-Certificates-Wizard-CSR-Preview.jpg)](/docs/assets/1763-StartSSL-Certificates-Wizard-CSR.jpg) + +6. Click "Continue >> >>". + + ![StartSSL Certificates Wizard CSR Received](/docs/assets/1764-StartSSL-Certificates-Wizard-CSR-Received-Preview.jpg) + +7. Choose the domain you would like a certificate for and click "Continue >> >>". + + ![StartSSL Certificates Wizard CSR Domain Selection](/docs/assets/1765-StartSSL-Certificates-Wizard-CSR-Domain-Preview.jpg) + +8. Enter the sub domain you entered when creating the CSR before (ex. www.yourdomain.com, server1.yourdomain.com), or if your entered yourdomain.com before, enter www into this field to make your certificate valid for www.yourdomain.com as well. Then click "Continue >> >>". + + [![StartSSL Certificates Wizard Choose a SubDomain](/docs/assets/1766-StartSSL-Certificates-Wizard-CSR-SubDomain-Preview.jpg)](/docs/assets/1766-StartSSL-Certificates-Wizard-CSR-SubDomain.jpg) + +9. Click "Continue >> >>". + + [![StartSSL Certificates Wizard CSR Ready for Issuing Certificate](/docs/assets/1767-StartSSL-Certificates-Wizard-CSR-Ready-Preview.jpg)](/docs/assets/1767-StartSSL-Certificates-Wizard-CSR-Ready.jpg) + +10. Once your certificate has been issued paste the certificate into a new server.crt file. Then save your changes and exit the editor. + + nano /etc/ssl/nginx/server.crt + +11. You can now exit the StartSSL website. + +### Gather Additional Required Certificate Files +1. Navigate to the directory you are storing your certificate and private key in: + + cd /etc/ssl/nginx + +2. Download the StartSSL CA Certificate using wget: + + wget http://www.startssl.com/certs/ca.pem + +3. Download the StartSSL Intermediate CA Certificate using wget: + + wget http://www.startssl.com/certs/sub.class1.server.ca.pem + +4. Create a unified CA Certificate file: + + cat sub.class1.server.ca.pem >> ca.pem + +5. Delete the no longer needed StartSSL Intermediate CA Certificate file: + + rm -rf sub.class1.server.ca.pem + +6. Create a single file containing your signed certificate and the StartSSL CA certificates for Nginx: + + cat server.crt ca.pem > nginx.crt + +### Install Your StartSSL Certificate + +1. By default, Nginx is configured to only serve HTTP requests on TCP port 80. You need to configure Nginx to server HTTPS requests on TCP port 443. Open up the sample Nginx SSL virtual host configuration file. + + nano /etc/nginx/conf.d/example_ssl.conf + +2. Adjust your configuration so it matches the example below. + + # HTTPS server + # + server { + listen 443 ssl; + server_name YOUR DOMAIN OR SUB DOMAIN NAME HERE; + + ssl_certificate /etc/ssl/nginx/nginx.crt; + ssl_certificate_key /etc/ssl/nginx/server.key; + + ssl_session_cache shared:SSL:10m; + ssl_session_timeout 5m; + + ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !EXPORT !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"; + ssl_prefer_server_ciphers on; + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } + } + + {{< note >}} +The changes are to `server_name`, `ssl_certificate`, `ssl_certificate_key`, `ssl_session_cache`, `ssl_ciphers`, and the removal of # signs. Also note, the addition of `ssl_protocols`. +{{< /note >}} + +3. Restart Nginx to apply your changes. + + service nginx restart + +### Test + +Launch a web browser and navigate to https://yourdomainorsubdomainhere and you should see the default nginx page. Please note, this will not work until you have created an A record for your hostname at your domain provider pointing to the IP address of your Linode. Please contact your domain provider if you need assistance. + + [![Up and Running](/docs/assets/1768-Up-And-Running.jpg)](/docs/assets/1768-Up-And-Running.jpg) + +You have successfully installed the latest version of Nginx and configured your free StartSSL SSL Certificate. You can now run an [SSL test](https://www.ssllabs.com/ssltest/) on your server and get an A! Now you can place any files you would like Nginx to make available in the /usr/share/nginx/html folder. diff --git a/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie.md b/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie.md new file mode 100644 index 00000000000..68db457e824 --- /dev/null +++ b/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie.md @@ -0,0 +1,295 @@ +--- +author: + name: Linode Community + email: contribute@linode.com +description: 'How to Install Nginx and a StartSSL Certificate on Debian 8 (Jessie)' +keywords: ["startssl", "nginx", "debian 8", "ssl certificate", "generate CSR"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['websites/nginx/how-to-install-nginx-and-a-startssl-certificate-on-debian-8-jessie/','websites/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/'] +published: 2015-10-21 +modified: 2016-08-18 +modified_by: + name: Phil Zona +title: 'Install nginx and a StartSSL Certificate on Debian 8 (Jessie)' +contributor: + name: Ryan Laverdiere + link: https://github.com/capecodrailfan +--- + + +This guide will show you how to install the latest stable version of nginx on Debian Jessie. It will also deploy a free SSL certificate from StartSSL that, when combined with our guide on [SSL and TLS deployment best practices](/docs/websites/nginx/nginx-ssl-and-tls-deployment-best-practices), will result in an "A+" grade on the [Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/). In this guide we are going to configure nginx to prefer strong server-side cipher suites and disable the vulnerable SSLv2 and SSLv3 protocols. + +## 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. Complete the sections of [Securing Your Server](/docs/security/securing-your-server) to harden SSH access, remove unnecessary network services and enable firewall rules for a web server. + +3. In order to obtain an SSL certificate for your Linode, you must have a registered domain name with correct [DNS records](/docs/networking/dns/dns-records-an-introduction). It is also recommended you have access to an email account associated with your domain, or the email address listed in its WHOIS information. This is the simplest way for StartSSL to verify that you have control of the domain for which you are requesting an SSL certificate. + +4. Update your system. + + sudo apt-get update && sudo apt-get upgrade + +{{< note >}} +Many steps in this guide require root privileges. Be sure to run the steps below as **root** or with the `sudo` prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. +{{< /note >}} + +## Install nginx + +If you simply want the latest stable version of nginx, you may follow the steps to [install it from the nginx package repository](/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/#from-nginx-package-repository). However, if you want to implement *all* of the options in our [SSL and TLS deployment best practices guide](/docs/websites/nginx/nginx-ssl-and-tls-deployment-best-practices), you will need to compile nginx from source to ensure compatibility. + +### Install and Compile nginx from Source + +While installing from the nginx package repository suffices in many cases, HTTP/2 will not be compatible with all browsers using that method. Google Chrome now only allows HTTP/2 connections with *application-layer protocol negotiation* (ALPN), which is supported in OpenSSL version 1.0.2 or newer. This version is not included in the default Debian package repositories, so you will need to add it manually and compile nginx against the newer OpenSSL to enable full support for HTTP/2. + +Please understand that when using this method, you will be responsible for updating nginx to include the latest updates. + +1. Add the [Debian Backports](https://backports.debian.org/) repository to the list of files that the package manager checks for updates: + + echo "deb http://ftp.debian.org/debian jessie-backports main " >> /etc/apt/sources.list.d/backports.list + +2. Update your list of available packages: + + apt-get update + +3. Install the latest version of OpenSSL and its library from the backports repository: + + apt-get install -t jessie-backports openssl libssl-dev + +4. Install the remaining nginx dependencies: + + apt-get install libpcre3-dev build-essential + +5. Download the [latest stable version](http://nginx.org/en/download.html) of nginx to your `/opt` directory. At the time of this publication, the latest stable version is nginx 1.11.2: + + cd /opt + wget http://nginx.org/download/nginx-1.11.2.tar.gz + +6. Extract the file, then navigate to the new directory: + + tar -zxvf nginx-1.*.tar.gz + cd /opt/nginx-1.* + +7. Configure the build options. The options shown here provide a good starting point, and will allow HTTP/2 compatibility. However, you may wish to add [other options](https://www.nginx.com/resources/admin-guide/installing-nginx-open-source/) as well, depending on your needs: + + ./configure --prefix=/opt/nginx --conf-path=/etc/nginx/nginx.conf --user=nginx --group=nginx --with-debug --with-threads --with-http_ssl_module --with-ipv6 --with-http_v2_module + + You will see an output of your configuration summary when this step is complete. Be sure to note the given file paths, since you'll need them shortly. + +8. Build and install nginx using the options you specified in Step 7: + + make + make install + +9. Create an nginx system user: + + sudo adduser --system --no-create-home --disabled-login --disabled-password --group nginx + +10. Create a systemd service script to run nginx: + + {{< file "/lib/systemd/system/nginx.service" shell >}} +[Unit] +Description=A high performance web server and a reverse proxy server +After=network.target + +[Service] +Type=forking +PIDFile=/opt/nginx/logs/nginx.pid +ExecStartPre=/opt/nginx/sbin/nginx -t -q -g 'daemon on; master_process on;' +ExecStart=/opt/nginx/sbin/nginx -g 'daemon on; master_process on;' +ExecReload=/opt/nginx/sbin/nginx -g 'daemon on; master_process on;' -s reload +ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /opt/nginx/logs/nginx.pid +TimeoutStopSec=5 +KillMode=mixed + +[Install] +WantedBy=multi-user.target + +{{< /file >}} + + + If you used the build configuration options shown in Step 7, you may use this script exactly as shown. However, if you specified your own file paths, you may need to adjust the value for `PIDFile` to match your PID file, and the paths in the lines beginning with `Exec` to match your nginx binary file path. These files paths were included in the output in Step 7. + +11. Make the `nginx.service` script executable: + + chmod +x /lib/systemd/system/nginx.service + +12. Start nginx: + + systemctl start nginx + + Optionally, you can enable nginx to start automatically on boot: + + systemctl enable nginx + +{{< note >}} +If you compile from a source distribution as above, some of the files referenced in this and other nginx guides may not be created by default. You may create those files yourself at their specified file paths, and nginx will work as intended. For more information, refer to our guide on [how to configure nginx](/docs/websites/nginx/how-to-configure-nginx). +{{< /note >}} + +## Generate a Private Key and Certificate Signing Request (CSR) + +1. Create a directory to store your certificate and private key. On Debian systems, the default location for storing certificates and private keys is in `/etc/ssl/`. You are going to create a new `nginx` directory at that location to store your certificate and private key for nginx: + + mkdir /etc/ssl/nginx + +2. Navigate to the newly created directory: + + cd /etc/ssl/nginx + +3. Generate a 4096-bit private RSA key. Most certificate authorities currently require customers to use at least a 2048-bit private RSA key. + + openssl genrsa -out server.key 4096 + +4. Generate a certificate signing request (CSR). In this example, `server.key` is the RSA private key file created above, and `server.csr` is the name of our CSR file: + + openssl req -new -key server.key -out server.csr + + When prompted for a `Common Name`, be sure to enter the domain name that you will be using to access your Linode. All other fields can be filled as you see fit. + + Optionally, you may enter a subdomain, for instance `www.yourdomain.com`. This must be a domain that you have control over and which you can receive email sent to `webmaster@yourdomain.com`. Any certificate issued for `yourname.yourdomain.com` is also valid for `yourdomain.com`. + + [![CSR Creation](/docs/assets/1751-CSR.jpg)](/docs/assets/1751-CSR.jpg) + +## Sign-up With StartSSL + +1. Launch a web browser and navigate to the [StartSSL Control Panel](https://www.startssl.com/?app=12). If this is your first time requesting a certificate from StartSSL, click on the **Sign-up** button. If you have already requested a certificate from StartSSL, log into your account, and skip to the next section. + +2. Provide the requested information and click **Continue**. + +3. A verification code will be sent to the email address provided. Log into your email account and provide the verification code. Then click **Continue**. + +4. Once your email address has been verified, choose to generate a high grade private key. This private key and certificate pair will be used to identify you to StartSSL. If you ever lose it, you will be unable to regain access to your account. Make sure to back up this certificate and private key. + +5. Click **Install** to incorporate your personal certificate into your browser, which will identify you to StartSSL. Once you've done this, click **Finish**. + +You should now be logged into your StartSSL account. + +## Verify Your Domain Name with StartSSL + +1. Click on the "Validations Wizard" tab. If you have already verified your domain name within the past 30 days, you may skip to the next section. + +2. Select "Domain Name Validation" and click **Continue**. + + [![StartSSL Validation Wizard Start Page](/docs/assets/startssl-domain-validation1.png)](/docs/assets/startssl-domain-validation1.png) + +3. Enter your domain name and click **Continue**. + + [![StartSSL Validation Wizard Domain Name Validation Page](/docs/assets/startssl-domain-validation2.png)](/docs/assets/startssl-domain-validation2.png) + +4. Choose an email address from the list and click **Send Verification Code**. + + [![StartSSL Validation Wizard Domain Control Email Validation Page](/docs/assets/startssl-domain-validation3.png)](/docs/assets/startssl-domain-validation3.png) + + A verification code should be sent to the email address selected. Access your email account and provide the verification code, then click **Validation**. + + Alternatively, if you do not have access to an email address at your domain, you may use "Website Control Validation." You will be prompted to download an HTML file and upload it to your site's root directory. This directory may vary depending on how you installed and configured nginx. + + [![StartSSL Validation Wizard Website Control Validation](/docs/assets/startssl-domain-validation4.png)](/docs/assets/startssl-domain-validation4.png) + + Once this is complete, click the button that says, "The verification file is ready in website, Continue..." + +5. Your domain has now been verified. Click **Finish**. + +### Submit Your Certificate Signing Request to StartSSL + +1. Click on the "Certificates Wizard" button in your StartSSL account. + +2. Select "Web Server SSL/TLS Certificate" and click **Continue**. + + [![StartSSL Certificates Wizard Start](/docs/assets/startssl-certificate1.png)](/docs/assets/startssl-certificate1.png) + +3. Enter the full domains that will use your certificate. The first entry will be designated as the "Common Name," which consists of your domain name and TLD without a subdomain. You may enter up to 5 hostnames in this section if you're obtaining a free certificate, although support for additional hostnames is available with paid StartSSL plans. + + [![StartSSL Certificates Wizard CSR Domain Selection](/docs/assets/startssl-certificate2.png)](/docs/assets/startssl-certificate2.png) + +4. On the same page, you will be prompted to submit the certificate signing request (CSR) which you generated previously. In our example, this file was located at `/etc/ssl/nginx/server.csr`. Copy the contents of your CSR file and paste them into the text box. Click **Submit**. + + [![StartSSL Certificates Wizard Submit CSR](/docs/assets/startssl-certificate3.png)](/docs/assets/startssl-certificate3.png) + +5. Click "Certificates List" to navigate to a list of your certificates. Find the certificate that corresponds with the "Common Name" you specified in Step 3, and click the **Retrieve** button on that line. + + [![StartSSL Certificates Wizard Retrieve Certificate](/docs/assets/startssl-certificate4.png)](/docs/assets/startssl-certificate4.png) + + This will prompt you to download a .zip archive that contains several repositories of certificate files for different web servers and applications. + +6. Within the archive, extract the `NginxServer.zip` archive, which contains a file with the extension `.crt`. This is your SSL certificate. Open the file in a text editor on your local computer and copy the *entire* contents to your clipboard. + + {{< note >}} +The text of the `.crt` file will appear to have two certificates in it. It is important to copy everything in this file, in the order shown. Failure to do so will prevent your SSL certificate from working properly. +{{< /note >}} + +7. Paste the content of this file into a new file called `/etc/ssl/nginx/server.crt` on your Linode and save it. You can replace `server.crt` with your own certificate name, but it is recommended to leave the `.crt` extension for organization. + +### Gather Additional Required Certificate Files + +1. Make sure you are still working in the directory where your nginx SSL files are located: + + cd /etc/ssl/nginx + +2. Download the StartSSL CA Certificate: + + wget http://www.startssl.com/certs/ca.pem + +3. Append the StartSSL Intermediate CA Certificate to that file, creating a unified CA Certificate file: + + curl http://www.startssl.com/certs/sub.class1.server.ca.pem >> ca.pem + +4. Create a single file containing your signed certificate and the StartSSL CA certificates for nginx: + + cat server.crt ca.pem > nginx.crt + +## Install Your StartSSL Certificate + +1. By default, nginx is configured to only serve HTTP requests on TCP port 80. To make use of SSL, you will need to configure nginx to serve HTTPS requests on TCP port 443. Open the sample nginx SSL server block configuration file and adjust your configuration so that it matches the example below. + + {{< file "/etc/nginx/conf.d/example_ssl.conf" aconf >}} +# HTTPS server +# +server { + listen 443 ssl; + server_name example.com; + + ssl_certificate /etc/ssl/nginx/nginx.crt; + ssl_certificate_key /etc/ssl/nginx/server.key; + + ssl_session_cache shared:SSL:10m; + ssl_session_timeout 5m; + + ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH !RC4"; + ssl_prefer_server_ciphers on; + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + + location / { + root /opt/nginx/html; + index index.html index.htm; + } +} + +{{< /file >}} + + + Replace the value of `server_name` with your domain or subdomain name. Make sure that the values of `ssl_certificate` and `ssl_certificate_key` match the file paths of the certificate and private key you created. The lines `ssl_session_cache`, `ssl_ciphers`, and `ssl_protocols` should match the above configuration. + + Depending on how you installed nginx, this file may not have been created by default. For example, if you compiled nginx from source, you will need to create the `example_ssl.conf` file and copy this configuration into it. If that is the case, you will also need to add the following line to the `http` block in your main nginx configuration file: + + {{< file-excerpt "/etc/nginx/nginx.conf" aconf >}} +include /etc/nginx/conf.d/*.conf; + +{{< /file-excerpt >}} + + +3. Restart nginx to apply your changes. + + systemctl restart nginx + +## Test Your Configuration + +Launch a web browser and navigate to your domain. You should see the default nginx page. Please note that this will not work unless you've created an "A" record for your domain at your DNS host, which points to your Linode's IP address. Please contact your domain registrar or DNS hosting provider if you need assistance. + +[![Up and Running](/docs/assets/1768-Up-And-Running.jpg)](/docs/assets/1768-Up-And-Running.jpg) + +You have successfully installed the latest version of nginx and configured your free StartSSL SSL certificate. You can now run an [SSL test](https://www.ssllabs.com/ssltest/) on your website to evaluate your SSL parameters. Please keep in mind that the above configuration is a starting point only. For further information on how to optimize nginx for SSL, follow our guide on [SSL and TLS deployment best practices](/docs/websites/nginx/nginx-ssl-and-tls-deployment-best-practices). + +You may also refer to our guide [How to Configure nginx](/docs/websites/nginx/how-to-configure-nginx) for further configuration options. diff --git a/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin.md b/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin.md index 11ee55f7c82..47c6cd7cd5a 100644 --- a/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin.md +++ b/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin.md @@ -270,7 +270,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin.md b/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin.md index 8dad5e152e9..74d0de5f0bd 100644 --- a/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin.md +++ b/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin.md @@ -61,7 +61,7 @@ This method is the easiest and it ensures that Nginx has been tested to run at i Nginx's [downloads page](https://www.nginx.com/download-oss-information/) has two more ways to install the web server: Using pre-built packages from the official Nginx repository or by building from source code. Either method will give you a more current version than what's available in Trusty Tahr but with a slightly higher chance of encountering unforseen issues because of newly-introduced bugs, and that these releases are not tested exclusively for a specific Linux distribution. -#### Installing from the Offcial Nginx Repository +#### Installing from the Official Nginx Repository The binary packages from Nginx's repo will update you to new versions of the web server when available. You can choose the [stable](http://nginx.org/en/linux_packages.html#stable) or [mainline](http://nginx.org/en/linux_packages.html#mainline) versions. If unsure, choose stable, which will be the example used for the remainder of this guide. diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux.md index 02a893c7cec..b2495bee441 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux.md @@ -155,7 +155,7 @@ When you visit `http://www.example.com/test.cgi` in your browser, your Perl envi You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny.md index 4208498e0d6..6e00d0eb17d 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny.md @@ -127,8 +127,8 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Installing Nginx on Debian 5 (Lenny)](/docs/web-servers/nginx/installation/debian-5-lenny) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Debian 5 (Lenny)](/docs/web-servers/nginx/installation/debian-5-lenny) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze.md index cdd5f85fea1..a1ab2dc7221 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze.md @@ -174,7 +174,7 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12.md index c49f6156b27..73ec089e2e0 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12.md @@ -150,8 +150,8 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Installing Nginx on Fedora 12](/docs/web-servers/nginx/installation/fedora-12) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 12](/docs/web-servers/nginx/installation/fedora-12) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13.md index 5034d3b314b..4ec77d6d9bd 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13.md @@ -148,8 +148,8 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Installing Nginx on Fedora 13](/docs/web-servers/nginx/installation/fedora-13) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 13](/docs/web-servers/nginx/installation/fedora-13) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14.md index e0b5222421d..f1aff20b4ee 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14.md @@ -345,8 +345,8 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Installing Nginx on Fedora 14](/docs/web-servers/nginx/installation/fedora-14) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 14](/docs/web-servers/nginx/installation/fedora-14) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid.md index d4125598b38..f7d0eddd0a7 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid.md @@ -194,7 +194,7 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick.md index ce22978d92c..5e54b992d57 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick.md @@ -176,7 +176,7 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty.md index c9b4d487caa..1c8e5a018cd 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty.md @@ -175,7 +175,7 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic.md b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic.md index fd96e020b42..5519bd1bd57 100644 --- a/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic.md +++ b/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic.md @@ -167,8 +167,8 @@ When you visit `http://www.example.com/test.pl` in your browser, your Perl envir You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [Perl Documentation](http://perldoc.perl.org/) -- [Installing Nginx on Ubuntu 9.10 (Karmic)](/docs/web-servers/nginx/installation/ubuntu-9-10-karmic) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Ubuntu 9.10 (Karmic)](/docs/web-servers/nginx/installation/ubuntu-9-10-karmic) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux.md index 4a840826c39..4ef988dd2d2 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux.md @@ -157,7 +157,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5.md index 747ac0bc2c5..e464f195df0 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5.md @@ -54,7 +54,7 @@ Issue the following commands to update your system and install the nginx web ser chkconfig --level 35 nginx on service nginx start -You'll be asked to accept the key for EPEL, as it gets imported the first time you install an EPEL package. Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +You'll be asked to accept the key for EPEL, as it gets imported the first time you install an EPEL package. Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. ## Configure Your Site diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny.md index 5a499dfc72c..c1e059a6609 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny.md @@ -36,7 +36,7 @@ Issue the following commands to update your system and install the nginx web ser apt-get install nginx php5-cli php5-cgi build-essential wget psmisc /etc/init.d/nginx start -Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. # Configure Your Site @@ -145,8 +145,8 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) - [Installing Nginx on Debian 5 (Lenny)](/docs/web-servers/nginx/installation/debian-5-lenny) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze.md index 0eac712a7db..d7bfb7961aa 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze.md @@ -270,7 +270,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12.md index 62eb1fb0aa7..5c61676df58 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12.md @@ -44,7 +44,7 @@ Issue the following commands to update your system and install the nginx web ser chkconfig --level 35 nginx on service nginx start -Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. # Configure Your Site @@ -158,8 +158,8 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Installing Nginx on Fedora 12](/docs/web-servers/nginx/installation/fedora-12) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 12](/docs/web-servers/nginx/installation/fedora-12) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13.md index e53a2f3530f..9b032a8bc0d 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13.md @@ -44,7 +44,7 @@ Issue the following commands to update your system and install the nginx web ser chkconfig --level 35 nginx on service nginx start -Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. # Configure Your Site @@ -158,8 +158,8 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Installing Nginx on Fedora 13](/docs/web-servers/nginx/installation/fedora-13) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 13](/docs/web-servers/nginx/installation/fedora-13) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14.md index 5049421e799..521b25f7a23 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14.md @@ -37,7 +37,7 @@ Issue the following commands to update your system and install the nginx web ser chkconfig --level 35 nginx on service nginx start -Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. # Configure Your Site @@ -151,8 +151,8 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Installing Nginx on Fedora 14](/docs/web-servers/nginx/installation/fedora-14) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Installing NGINX on Fedora 14](/docs/web-servers/nginx/installation/fedora-14) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md index 1cd39c3241f..fe6b9a0b28c 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid.md @@ -270,7 +270,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick.md index 3d3269a3b0e..4575d10ceef 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick.md @@ -270,7 +270,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty.md index db2f4902a71..d5d43e8e313 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty.md @@ -270,7 +270,7 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-9-10-karmic.md b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-9-10-karmic.md index 4c010fcd78f..9b023ea3d9b 100644 --- a/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-9-10-karmic.md +++ b/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-9-10-karmic.md @@ -60,7 +60,7 @@ Issue the following commands to update your system and install the nginx web ser apt-get upgrade apt-get install nginx php5-cli php5-cgi spawn-fcgi -Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com//)). You should get the default ngnix page. +Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Remote Access" tab in the [Linode Manager](http://manager.linode.com/)). You should get the default NGINX page. # Configure Your Site @@ -165,8 +165,8 @@ When you visit `http://www.example.com/test.php` in your browser, the standard " You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials. -- [The nginx Homepage](http://nginx.org/) +- [The NGINX Homepage](http://nginx.org/) - [FastCGI Project Homepage](http://www.fastcgi.com/) - [PHP Documentation](http://www.php.net/docs.php) - [Installing Nginx on Ubuntu 9.10 (Karmic)](/docs/web-servers/nginx/installation/ubuntu-9-10-karmic) -- [Basic Ngnix Configuration](/docs/websites/nginx/basic-nginx-configuration) +- [Basic NGINX Configuration](/docs/websites/nginx/basic-nginx-configuration) diff --git a/docs/web-servers/nginx/nginx-reverse-proxy.md b/docs/web-servers/nginx/nginx-reverse-proxy.md deleted file mode 100644 index 350f6cabf42..00000000000 --- a/docs/web-servers/nginx/nginx-reverse-proxy.md +++ /dev/null @@ -1,232 +0,0 @@ ---- -author: - name: mouhsen_ibrahim - email: mohsen47@hotmail.co.uk -description: 'This guide will show you how to use NGINX as a reverse proxy' -og_description: 'This guide shows how to use NGINX as a reverse proxy and explains several common configuration options.' -keywords: ["nginx","proxy","reverse proxy"] -license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2017-12-21 -modified: 2017-12-21 -modified_by: - name: Linode -title: 'How to Use NGINX as a Reverse Proxy' -contributor: - name: Mouhsen Ibrahim - link: https://github.com/mohsenSy -external_resources: - - '[Nginx Documentation](https://nginx.org/en/docs)' - - '[Nginx Proxy Documentation](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass)' ---- - -## What is a Reverse Proxy? - -A reverse proxy is a type of proxy server which forwards client requests to backend servers. - -NGINX offers excellent security, acceleration, and load balancing features, making it one of the most popular choices to serve as a reverse proxy. When used as a reverse proxy NGINX handles all client interaction, so it can provide security and optimization to backend services that often lack these features. - -For more information on the benefits of using NGINX as a reverse proxy, see the official [documentation](https://www.nginx.com/resources/glossary/reverse-proxy-server/). - -## Before You Begin - -1. Complete the [Getting Started](/docs/getting-started) guide. - -2. Follow the [Secure Your Server](/docs/security/securing-your-server/) guide to create a standard user account, harden SSH access and remove unnecessary network services; this guide will use `sudo` wherever possible. - -3. Update your system: - - sudo apt update && sudo apt upgrade -y - -{{< 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. -{{< /note >}} - -### Install NGINX - -Debian and Ubuntu: - - sudo apt install nginx - -CentOS and RHEL: - - sudo yum install epel-release && sudo yum install nginx - -{{< note >}} -If you are unfamiliar with NGINX configuration, see our [How to Configure NGINX](/docs/web-servers/nginx/how-to-configure-nginx) guide for more information. -{{< /note >}} - -## Create a Python Test Server - -The sample app will use the `http.server` module (available for Python 3.4 and above) to create a simple HTTP server that will serve static content on `localhost`. - -### Install Python - -{{< content "install_python_miniconda.md" >}} - -### Create a Sample App - -1. Since the module will serve files in the working directory, create a new one for this example: - - mkdir myapp - cd myapp - -2. Create a test page for the app to serve: - - echo "hello world" > index.html - -3. Start a basic http server: - - python -m http.server 8000 --bind 127.0.0.1 - - {{< note >}} -Python 2.7 has an equivalent module via `python -m SimpleHTTPServer 8000` that listens to all interfaces but does not have an option to bind to a specific address from the command line. - -Using the `http.server` module from Python 3.4 and above is highly recommanded as it allows a convenient way to bind to a specific IP. Some distributions may need to specify the Python version explicitly: `python3 -m http.server 8000 --bind 127.0.0.1` -{{< /note >}} - -4. Open a new terminal. Use `curl` to check the HTTP headers: - - curl -I localhost:8000 - - Review the output to confirm that the server is `SimpleHTTP`: - - {{< output >}} -HTTP/1.0 200 OK -Server: SimpleHTTP/0.6 Python/3.5.3 -Date: Tue, 19 Dec 2017 19:56:08 GMT -Content-type: text/html -Content-Length: 12 -Last-Modified: Tue, 19 Dec 2017 14:45:31 GMT -{{< /output >}} - -5. Test that the app is listening on `localhost`: - - curl localhost:8000 - - This should print `hello world` to the console. - -## Specify a Local Host - -While this step is optional, specifying a local hostname will make it more convenient to point to the example app in later steps. - -Add a hostname `myapp` that will only work locally: - -{{< file-excerpt "/etc/hosts" >}} -127.0.0.1 localhost -127.0.0.1 myapp -127.0.1.1 localhost.localdomain localhost - -# The following lines are desirable for IPv6 capable hosts -::1 localhost ip6-localhost ip6-loopback -ff02::1 ip6-allnodes -ff02::2 ip6-allrouters -{{< /file-excerpt >}} - -## Reverse Proxy Configuration - -1. Create an NGINX configuration file in `/etc/nginx/sites-available/myapp`: - - {{< file "/etc/nginx/sites-available/myapp" nginx >}} -server { - listen 80; - server_name myapp; - - location / { - proxy_pass http://localhost:8000/; - } -} -{{< /file-excerpt>}} - - {{< caution >}} -Remember to add a trailing slash `/` to the end of the URL in the `proxy_pass` directive so that NGINX can correctly generate a URL to be sent to the backend server. -{{< /caution >}} - -2. Enable the configuration by creating a symlink to `sites-enabled`: - - sudo ln -s /etc/nginx/sites-available/myapp /etc/nginx/sites-enabled/myapp - -3. Remove the default symlink: - - sudo rm /etc/nginx/sites-enabled/default - -4. Restart `nginx` to allow the changes to take effect: - - sudo systemctl restart nginx.service - -5. Test the proxy with curl: - - curl -I myapp - - {{< output >}} -HTTP/1.1 200 OK -Server: nginx/1.10.3 -Date: Tue, 19 Dec 2017 20:30:54 GMT -Content-Type: text/html -Content-Length: 12 -Connection: keep-alive -Last-Modified: Tue, 19 Dec 2017 14:45:31 GMT -{{< /output >}} - - The server is now `nginx`. You can also navigate to your Linode's public IP address in a browser and confirm that the application is publicly accessible on port 80. - - {{< note >}} -When deploying a web application, be sure to turn off the `Server` header and follow the [recommended NGINX security configurations](https://www.owasp.org/index.php/SCG_WS_nginx). -{{< /note >}} - -### Non-HTTP Protocols -NGINX can proxy non-HTTP protocols using appropriate `*_proxy` directives such as: - -* `fastcgi_pass` passes a request to a FastCGI server -* `uwsgi_pass` passes a request to a uwsgi server -* `scgi_pass` passes a request to an SCGI server -* `memcached_pass` passes a request to a memcached server - -### Pass Request Headers to Backend Servers - -Sometimes your backend application needs to know the IP address of the user who is visiting your website. With a reverse proxy, the backend server only sees the proxy IP address. This can be solved by passing the IP address of the client using HTTP request headers. The `proxy_set_header` directive is used for this. - -{{< file "/etc/nginx/sites-available/myapp" nginx >}} -server { - listen 80; - - server_name myapp; - - location / { - proxy_set_header X-Forwarded-For $remote_addr; - proxy_set_header Host $host; - proxy_pass http://localhost:8000/; - } -} -{{< /file >}} - -`$remote_addr` is a built-in variable that holds the IP address of the client; `$host` contains the hostname for the request. You can read more about these variables [here](https://nginx.org/en/docs/varindex.html). - -### Choose a Bind Address -If your backend server is configured to only accept connections from certain IP addresses and your proxy server has multiple network interfaces, then you want your reverse proxy to choose the right source IP address when connecting to a backend server. This can be achieved with `proxy_bind`: - -{{< file-excerpt "/etc/nginx/sites-enabled/example.conf" nginx >}} -location / { - proxy_bind 192.0.2.1; - proxy_pass http://localhost:8000/; -} -{{< /file-excerpt >}} - -Now when your reverse proxy connects with the backend server it will use `192.0.2.1` as the source IP address. - -### Buffers -When NGINX receives a response from the backend server, it buffers the response before sending -it to the client, which helps optimize performance with slow clients. Buffering -can be turned off or customized with these directives: `proxy_buffering`, `proxy_buffers` and `proxy_buffer_size`. - -{{< file-excerpt "/etc/nginx/sites-available/myapp" nginx >}} -location / { - proxy_buffers 8 2k; - proxy_buffer_size 2k; - proxy_pass http://localhost:8000/; -} -{{< /file-excerpt >}} - - - `proxy_buffering` is used to enable or disable buffering. - - `proxy_buffering off;` disables buffering. Buffering is enabled by default. - - `proxy_buffers` controls the number and size of buffers allocated to each request. In the example above, there are 8 buffers, each of which is 2KB. - - `proxy_buffer_size` controls the size of initial buffer where the response is first stored for all requests. diff --git a/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices.md b/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices.md new file mode 100644 index 00000000000..12eb7ff3c92 --- /dev/null +++ b/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices.md @@ -0,0 +1,286 @@ +--- +author: + name: Linode Community + email: docs@linode.com +description: 'This guide details best practices for deploying SSL and TLS in conjunction with nginx.' +keywords: ["nginx", "ssl", "tls"] +license: '[CC BY-ND 4.0](http://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['websites/nginx/nginx-ssl-and-tls-deployment-best-practices/'] +published: 2016-08-18 +modified: 2016-08-18 +modified_by: + name: Linode +title: 'NGINX SSL and TLS Deployment Best Practices' +contributor: + name: Ryan Laverdiere + link: https://github.com/capecodrailfan +external_resources: +- '[Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/)' +- '[KeyCDN HTTP/2 Test](https://tools.keycdn.com/http2-test)' +--- + +This guide is intended to inform you of some additional configuration options that NGINX uses when serving HTTPS. While these features help optimize NGINX for SSL and TLS, this is by no means a complete guide to securing NGINX or your Linode. The best way to ensure your server remains secure is to not only configure it properly, but to follow best security practices at all times. This guide is intended to be one of many steps toward creating the most secure environment possible. + +## Before you Begin + +1. This guide is a continuation of our tutorial on how to [install NGINX and a StartSSL certificate on Debian 8 (Jessie)](/docs/websites/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie). The principles here can be adapted to an SSL/TLS deployment on any system, but at a minimum, you will need a Linode with the latest stable version of NGINX and an SSL certificate installed. + +2. Update your system: + + apt-get update && apt-get upgrade + +{{< note >}} +The commands in this guide are written for a root user. If you're following along as a non-root user, commands that require elevated privileges should 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 >}} + +For more information, please review our guides on [basic NGINX configuration](/docs/websites/nginx/how-to-configure-nginx), [Linux security basics](/docs/security/linux-security-basics) and [securing your server](/docs/security/securing-your-server). + +## Disable NGINX Server Tokens + +By default, NGINX will share its version number with anyone who connects to your server. For example, if a directory is not found, NGINX will return a 404 error that includes its version number. Disabling server tokens makes it more difficult to determine the version of NGINX running on your Linode, and therefore more difficult to implement version-specific exploits. + +[![404 With NGINX Version Number](/docs/assets/404_Not_Found.jpg)](/docs/assets/404_Not_Found.jpg) + +1. To disable `server_tokens`, open your `/etc/nginx/nginx.conf` file. Inside of the `http` block, append or uncomment the following line: + + {{< file-excerpt "/etc/nginx/nginx.conf" >}} +server_tokens off; + +{{< /file-excerpt >}} + + +2. Save your changes and restart NGINX. + + systemctl restart nginx + +After restarting, direct your web browser to a directory of your server that does not exist, and NGINX will no longer share its version number. + +[![404 With Server Tokens Disabled](/docs/assets/404_Not_Found_Server_Tokens_Off.jpg)](/docs/assets/404_Not_Found_Server_Tokens_Off.jpg) + +## Enable HTTP/2 Support + +In September 2010, Google released the SPDY protocol for all versions of Chrome 6. SPDY is currently being phased out in favor of HTTP/2. Support for SPDY in Chrome was removed in May 2016. SPDY is supported only in NGINX 1.8.x or older, whereas versions beginning with 1.9.5 are beginning to support HTTP/2. To check your NGINX version: + + nginx -v + +{{< note >}} +If you installed NGINX from source without modifying your environment variables, invoke the full path to the binary: + +/opt/nginx/sbin/nginx -v +{{< /note >}} + +HTTP/2 is a new version of the HTTP standard replacing HTTP/1.1 to reduce page load time. Traditionally, when a user accessed a web page, a separate HTTP connection was established to load each resource (e.g. HTML, CSS, JavaScript, or images). HTTP/2 allows concurrent requests on a single connection to download assets in parallel. The server also compresses assets before sending them to the client, which requires less bandwidth. + +{{< note >}} +Chrome has deprecated Next Protocol Negotiation (NPN) and now requires Application-Layer Protocol Negotiation (ALPN) for HTTP/2 compatibility. However, ALPN requires OpenSSL 1.0.2+. Many distributions, such as Debian 8 (Jessie) do not include this package in their repositories. If you intend to enable HTTP/2, you will need to use a version of NGINX compiled with OpenSSL 1.0.2+. See our instructions on [compiling NGINX from source](/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/#install-and-compile-nginx-from-source) for more information. +{{< /note >}} + +1. To enable HTTP/2, open your NGINX SSL virtual host configuration file. Depending on how you installed NGINX, this could be located at `/etc/nginx/sites-enabled/default` or at `/etc/nginx/conf.d/example_ssl.conf`. Look for the `listen` line within the "SSL Configuration" section. Uncomment the following line if necessary and add `http2` to the end before the semicolon. + + {{< file-excerpt "/etc/nginx/conf.d/example_ssl.conf" aconf >}} +listen 443 ssl http2; + +{{< /file-excerpt >}} + + +2. Save your changes and restart NGINX. + + systemctl restart nginx + +3. Open a web browser and navigate to [the KeyCDN HTTP/2 Test](https://tools.keycdn.com/http2-test), enter your Linode's domain name or hostname in the text box and click "Test." Optionally, uncheck the Public checkbox if you do not want your results displayed publicly. This free tool will check your server and let you know if HTTP/2 and ALPN are enabled and functioning correctly. + + If HTTP/2 is functioning properly, your report should look like this: + + [![HTTP/2 Report](/docs/assets/HTTP2_Report.jpg)](/docs/assets/HTTP2_Report.jpg) + +## Redirect HTTP Traffic to HTTPS + +Google is now ranking websites that accept encrypted HTTPS connections higher in search results, so redirecting HTTP requests to HTTPS is one possible way to increase your page rank. Before following these steps, however, be sure to research compatibility issues that may arise with older browsers. + +1. Open your HTTP NGINX virtual host configuration file, which can be located at `/etc/nginx/conf.d/default.conf`, `/etc/nginx/nginx.conf` or `/etc/nginx/sites-enabled/default` depending on how you installed nginx. Change `example.com` to match your Linode's domain name or hostname: + + {{< file-excerpt "/etc/nginx/conf.d/default.conf" nginx >}} +server_name example.com + +{{< /file-excerpt >}} + + +2. Append the following line below the `server_name` line. + + {{< file-excerpt "/etc/nginx/conf.d/default.conf" nginx >}} +rewrite ^ https://$server_name$request_uri? permanent; + +{{< /file-excerpt >}} + + +3. Comment out (place `#` in front of) all other lines so your configuration looks like this: + + {{< file-excerpt "/etc/nginx/conf.d/default.conf" nginx >}} +server { + listen 80; + server_name example.com; + rewrite ^ https://$server_name$request_uri? permanent; +} + +{{< /file-excerpt >}} + + +4. Save your changes and restart NGINX. + + systemctl restart nginx + +5. Navigate to your Linode's domain name in your browser, specifying `http://`. You should now be redirected to HTTPS. + +## OCSP Stapling + +The *Online Certificate Status Protocol* (OCSP) was created to speed up the process that operating systems and browsers use to check for certificate revocation. For instance, when you use Internet Explorer or Google Chrome on a Windows machine, Windows is configured by default to check for certificate revocation. Prior to OCSP, your operating system or browser would download a *certificate revocation list* (CRL). CRLs have grown so large that browser vendors are now creating their own CRLs and distributing them to users. + +The problem with OCSP is that a certificate authority can now track users as they move from website to website with certificates provided by the same vendor or certificate authority. To prevent this, you can enable OCSP stapling. + +When OCSP stapling is enabled, NGINX on your Linode will make an OCSP request for the client. The response received from the OCSP server is added to NGINX's response to the user. This eliminates the need for the user to connect to an OCSP server to check the revocation status of your server certificate. + +Before enabling OCSP stapling you will need to have a file on your system that stores the CA certificates used to sign the server certificate. This section assumes that you have followed our guide on [how to install NGINX and a StartSSL certificate](/docs/websites/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie). If you have not, complete Steps 1-3 in the [Gather Additional Required Certificate Files](/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/#gather-additional-required-certificate-files) section of that guide before proceeding here. + +1. Open your HTTPS NGINX virtual host configuration file, which can be located at `/etc/nginx/conf.d/example_ssl.conf` or `/etc/nginx/sites-enabled/default` depending on how you installed and configured NGINX. Add the following lines inside the `server` block: + + {{< file-excerpt "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +ssl_stapling on; +ssl_stapling_verify on; +ssl_trusted_certificate /etc/ssl/nginx/ca.pem; + +{{< /file-excerpt >}} + + +2. Save your changes and restart NGINX. + + systemctl restart nginx + +3. In a web browser, navigate to the [Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/). Enter the domain name or hostname of your Linode and click "Submit". Optionally, you may uncheck the checkbox to prevent your test from being shown publicly. + + Once the test is complete, scroll down to the "Protocol Details" section. Look for the "OCSP stapling" line. If nginx is configured correctly, this test will return "Yes." + + [![SSL Server Test OCSP](/docs/assets/OCSP_Stapling_SSL_Test.jpg)](/docs/assets/OCSP_Stapling_SSL_Test.jpg) + +## HTTP Strict Transport Security (HSTS) + +Google Chrome, Mozilla Firefox, Opera, and Safari currently honor HSTS headers. HSTS is used to force browsers to only connect using secure encrypted connections. This means your site will no longer be accessible over HTTP. When HSTS is enabled and a valid HSTS header is stored in a users browser cache, the user will be unable to access your site if presented with a self-signed, expired, or SSL certificate issued by an untrusted certificate authority. The user will also be unable to bypass any certificate warnings unless your HSTS header expires or the browser cache is cleared. + +With all traffic being redirected from HTTP to HTTPS, you may want to allow users to only connect using HTTPS. Before enabling HSTS, be sure that you understand the potential impact on compatibility with older browsers. + +**Do not follow these steps if you want users to be able to access your site over HTTP!** + +1. Open up your nginx HTTPS virtual host configuration file. This may be located at `/etc/nginx/sites-enabled/default` or at `/etc/nginx/conf.d/example_ssl.conf`. Append the following line inside your `server` block: + + {{< file-excerpt "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +add_header Strict-Transport-Security "max-age=31536000; includeSubdomains"; + +{{< /file-excerpt >}} + + + The `max-age` attribute sets the expiration date for this header in seconds; in the above configuration, the header will expire after 1 year. You can configure this to be longer or shorter if you choose, but a period of less than 180 days is considered too short for the Qualys test. The `includeSubdomains` argument enforces HSTS on all subdomains. + +2. Save your changes and restart NGINX. + + systemctl restart nginx + +3. Navigate to the [Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/). Enter the domain name or hostname of your Linode and click "Submit." Optionally, you may uncheck the checkbox to not show your results on the boards. + + {{< note >}} +If you've already conducted a test from one of the above sections, use the **Clear cache** link to initiate a new scan. +{{< /note >}} + + Once the test is complete, scroll down to the "Protocol Details" section. Look for the "Strict Transport Security (HSTS)" line. If NGINX is configured correctly this test will return "Yes." + + [![SSL Server Test HSTS](/docs/assets/HSTS_SSL_Test.jpg)](/docs/assets/HSTS_SSL_Test.jpg) + +## Disable Content Sniffing + +Content sniffing allows browsers to inspect a byte stream in order to "guess" the file format of its contents. It is generally used to help sites that do not correctly identify the MIME type of their web content, but it also presents a vulnerability to cross-site scripting and other attacks. To disable content sniffing, add the following line to your NGINX SSL configuration file in the `server` block: + +{{< file "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +add_header X-Content-Type-Options nosniff; + +{{< /file >}} + + +## Disable or Limit Embedding + +The HTTPS header `X-Frame-Options` can specify whether a page is able to be rendered in a frame, iframe, or object. If left unset, your site's content may be embedded into other sites' HTML code in a clickjacking attack. To disable the embedding of your content, add the following line to your SSL configuration file in the `server` block: + +{{< file "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +add_header X-Frame-Options DENY; + +{{< /file >}} + + +If you'd like to limit embedding rather than disabling it altogether, you can replace `DENY` with `SAMEORIGIN`. This will allow you to use your page in a frame as long as the site attempting to do so is the same one serving your page. + +## Create a Custom Diffie-Hellman Key Exchange + +We're using a 4096-bit RSA private key to sign the Diffie-Hellman key exchange, but the default parameters for Diffie-Hellman only specify 1024 bits, often making it the weakest link in the SSL cipher suite. We should generate our own custom parameters for the key exchange to provide greater security. + +1. Navigate to your `certs` directory: + + cd /etc/ssl/certs + +2. Create custom parameters for the TLS handshake. Here we will use a 4096-bit key for high security: + + openssl dhparam -out dhparam.pem 4096 + +3. Specify the new parameter by adding the following line to your NGINX SSL configuration file in the `server` block: + + {{< file "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +ssl_dhparam /etc/ssl/certs/dhparam.pem; + +{{< /file >}} + + +4. Save your changes and restart NGINX: + + systemctl restart nginx + +## Test Your Configuration + +If you have been following along, starting with the guide on installing the latest version of NGINX for Debian Wheezy or Jessie and getting a StartSSL certificate, your `/etc/nginx/conf.d/example_ssl.conf` should now look similar to this: + +{{< file "/etc/nginx/conf.d/example_ssl.conf" nginx >}} +# HTTPS server +# +server { + listen 443 ssl http2; + + add_header Strict-Transport-Security "max-age=31536000; includeSubdomains"; + add_header X-Content-Type-Options nosniff; + add_header X-Frame-Options DENY; + + server_name example.com; + + ssl_certificate /etc/ssl/nginx/nginx.crt; + ssl_certificate_key /etc/ssl/nginx/server.key; + + ssl_session_cache shared:SSL:10m; + ssl_session_timeout 5m; + + ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH !RC4"; + ssl_prefer_server_ciphers on; + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + + ssl_stapling on; + ssl_stapling_verify on; + ssl_trusted_certificate /etc/nginx/ca.pem; + + ssl_dhparam /etc/ssl/certs/dhparam.pem; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } +} + +{{< /file >}} + + +Now that you've optimized NGINX for SSL and TLS, you can test your configuration at [Qualys SSL Labs SSL Server Test](https://www.ssllabs.com/ssltest/). This configuration should earn you a grade of "A+." If you are getting a lesser rating, check your configuration for errors. Additionally, check that your site is enabled and returning a 200 HTTP response code, as that may also affect your rating. This information can be found in the "Miscellaneous" section at the bottom of your SSL Server Test report. + +Again, the best way to ensure security is by following best practices at all times, not simply relying on your configuration, so be sure to monitor for updates and apply them to your server as needed. With proper maintenance, your server will remain secure and safe from attack. diff --git a/docs/web-servers/nginx/slightly-more-advanced-configurations-for-nginx.md b/docs/web-servers/nginx/slightly-more-advanced-configurations-for-nginx.md index 020152e5d1e..ee181994aa8 100644 --- a/docs/web-servers/nginx/slightly-more-advanced-configurations-for-nginx.md +++ b/docs/web-servers/nginx/slightly-more-advanced-configurations-for-nginx.md @@ -25,7 +25,7 @@ title: 'Getting Started with NGINX - Part 2: (Slightly More) Advanced Configurat ## Configure NGINX to Your Needs -The internet has no shortage of sites, posts, Gists and other places listing endless methods of "tuning", "tweaking", or "optimizing" procedures for NGINX. +The internet has no shortage of sites, posts, and other places listing endless methods of "tuning", "tweaking", or "optimizing" procedures for NGINX. However, rarely are these configurations tested to deduce if there is in fact a performance increase. Of those that are, the author's use case may be completely different than yours, so there's no guarantee you'll experience the same benefit using their configuration. diff --git a/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04.md b/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04.md index af3409b465e..bc38905f9c6 100644 --- a/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04.md +++ b/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04.md @@ -157,7 +157,7 @@ def application(environ, start_response): service nginx restart -You can test by pointing a web browser to your domian. If you see `Hello World!` than you have successfully configured your Linode for uWSGI with Nginx! +You can test by pointing a web browser to your domain. If you see `Hello World!` than you have successfully configured your Linode for uWSGI with Nginx! # Additional Application Servers 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/cms/how-to-install-and-configure-wordpress.md b/docs/websites/cms/how-to-install-and-configure-wordpress.md index 4d5e6d7230f..ad0c682ac6a 100644 --- a/docs/websites/cms/how-to-install-and-configure-wordpress.md +++ b/docs/websites/cms/how-to-install-and-configure-wordpress.md @@ -20,7 +20,7 @@ external_resources: WordPress is a popular, dynamic, blog-focused content management system. The software is built upon a LAMP or LEMP stack and features an extensive plugin framework and theme system, which allows site owners and developers to deploy easy-to-use and powerful publishing tools. -If you're using Ubuntu 16.04, please use our guide on how to [Install Wordpress on Ubuntu 16.04](/docs/websites/cms/install-wordpress-on-ubuntu-16-04). +If you're using Ubuntu 16.04, please use our guide on how to [Install WordPress on Ubuntu 16.04](/docs/websites/cms/install-wordpress-on-ubuntu-16-04). {{< 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. diff --git a/docs/websites/cms/install-and-configure-drupal-8.md b/docs/websites/cms/install-and-configure-drupal-8.md index bbb1192633d..ab4142ab6e7 100644 --- a/docs/websites/cms/install-and-configure-drupal-8.md +++ b/docs/websites/cms/install-and-configure-drupal-8.md @@ -21,7 +21,7 @@ Drupal 8 is the lastest version of the popular [Drupal](https://www.drupal.org/) 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) guide to create a standard user account, harden SSH access, remove unnecessary network services and create firewall rules for your web server; you may need to make addional firewall exceptions for your specific application. +2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server) guide to create a standard user account, harden SSH access, remove unnecessary network services and create firewall rules for your web server; you may need to make additional firewall exceptions for your specific application. 3. Update your system: diff --git a/docs/websites/cms/install-odoo-10-on-ubuntu-16-04.md b/docs/websites/cms/install-odoo-10-on-ubuntu-16-04.md old mode 100755 new mode 100644 index 83a9fafb737..ad811759451 --- a/docs/websites/cms/install-odoo-10-on-ubuntu-16-04.md +++ b/docs/websites/cms/install-odoo-10-on-ubuntu-16-04.md @@ -112,7 +112,7 @@ Install the required Python libraries: These commands use the `requirements.txt` files provided with your Odoo installation to ensure you're getting the correct versions of the packages your applications depend on. -### Install Less CSS via nodejs and npm +### Install Less CSS via Node.js and npm 1. Download and run the `nodejs` installation script from nodesource: @@ -122,7 +122,7 @@ These commands use the `requirements.txt` files provided with your Odoo installa sudo apt install -y nodejs -3. Install a newer version of Less via `npm`, the NodeJS package manager. +3. Install a newer version of Less via `npm`, the Node.js package manager. sudo npm install -g less less-plugin-clean-css @@ -276,7 +276,7 @@ The most relevant line in this file is `StandardOutput=journal+console`. As conf ## Test Odoo -1. Open a new browser window and enter in the address bar: +1. Open a new browser window and visit the address: http://:8069 @@ -331,7 +331,7 @@ Clone the updated Odoo source which is different from your older production inst The advantage of using the same server is that all dependencies have already been met. What is next is to configure the server accordingly. -1. Copy the original configuration file from the source to appropiate location: +1. Copy the original configuration file from the source to appropriate location: sudo cp /opt/odoo/debian/odoo.conf /etc/odoo-server-te.conf diff --git a/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04.md b/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04.md index ca578d7ecbe..9dc56d703be 100644 --- a/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04.md +++ b/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04.md @@ -109,7 +109,7 @@ Install Python libraries using the following commands: sudo pip install -r /opt/odoo/doc/requirements.txt sudo pip install -r /opt/odoo/requirements.txt -### Install Less CSS via nodejs and npm +### Install Less CSS via Node.js and npm 1. Download the `nodejs` installation script from [nodesource](https://nodesource.com/): diff --git a/docs/websites/cms/install-wordpress-on-ubuntu-16-04.md b/docs/websites/cms/install-wordpress-on-ubuntu-16-04.md index 190c1642ec4..fb5a88d5976 100644 --- a/docs/websites/cms/install-wordpress-on-ubuntu-16-04.md +++ b/docs/websites/cms/install-wordpress-on-ubuntu-16-04.md @@ -98,7 +98,7 @@ Replace each instance of `example.com` in this guide with your site's domain nam WordPress will test the credentials and if authentication is successful, prompt you to **Run the install**. {{< note >}} -If Wordpress doesn't display when you visit your domain, try adding `/wp-admin` to the end of the URL. This sometimes happens if you previously created an index file in your site's home directory. +If WordPress doesn't display when you visit your domain, try adding `/wp-admin` to the end of the URL. This sometimes happens if you previously created an index file in your site's home directory. {{< /note >}} 2. Fill out the administration information and click **Install WordPress**. @@ -188,7 +188,7 @@ upload_max_filesize = 2M ## Install Optional PHP Extensions -Wordpress, and many of its plugins, use PHP extensions that you'll need to install manually. This section is optional, but it will allow you to access some Wordpress features you may not have with a basic PHP installation. +WordPress, and many of its plugins, use PHP extensions that you'll need to install manually. This section is optional, but it will allow you to access some WordPress features you may not have with a basic PHP installation. - In order to modify photos or images in Wordpress, you'll need the PHP-GD extension. For example, when you upload an image to use as a header, you may need to crop the image to make it fit your page. @@ -202,7 +202,7 @@ Wordpress, and many of its plugins, use PHP extensions that you'll need to insta sudo apt install php7.0-mbstring -- To use XML-RPC to access Wordpress via the mobile app, or to use Jetpack, you'll need `php-xmlrpc`. For more information on XML-RPC, visit the [WordPress guide on XML-RPC](https://codex.wordpress.org/XML-RPC_Support). For more information on Jetpack, visit [Jetpack for Wordpress](https://jetpack.com/). +- To use XML-RPC to access WordPress via the mobile app, or to use Jetpack, you'll need `php-xmlrpc`. For more information on XML-RPC, visit the [WordPress guide on XML-RPC](https://codex.wordpress.org/XML-RPC_Support). For more information on Jetpack, visit [Jetpack for Wordpress](https://jetpack.com/). To install the XML-RPC extension: diff --git a/docs/websites/cms/manage-web-content-with-joomla.md b/docs/websites/cms/manage-web-content-with-joomla.md index 1a3aa74b139..eeac1be1857 100644 --- a/docs/websites/cms/manage-web-content-with-joomla.md +++ b/docs/websites/cms/manage-web-content-with-joomla.md @@ -20,7 +20,7 @@ Before installing Joomla, we assume that you have followed our [getting started ## Installing Prerequisites -After installing the [LAMP stack](/docs/lamp-guides/), you must attend to a few additional prerequsites to complete this Joomla installation. Ensure that your distribution provides `wget` and `unzip` tools. In Debian- and Ubuntu-based systems, issue the following command: +After installing the [LAMP stack](/docs/lamp-guides/), you must attend to a few additional prerequisites to complete this Joomla installation. Ensure that your distribution provides `wget` and `unzip` tools. In Debian- and Ubuntu-based systems, issue the following command: apt-get update apt-get upgrade --show-upgraded diff --git a/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7.md b/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7.md index 84330f78024..eff7e550c7b 100644 --- a/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7.md +++ b/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7.md @@ -22,17 +22,17 @@ Linode has another guide for installing Drush and creating a Drupal website, [In Before installing themes, modules, and a backup system with Drush, make sure that the following prerequisites have been met: -1. Create a new Linode by following our [Getting Started](/docs/getting-started/) guide. +1. Create a new Linode by following our [Getting Started](/docs/getting-started/) guide. -2. Address security concerns with the [Securing Your Server](/docs/securing-your-server) guide. +2. Address security concerns with the [Securing Your Server](/docs/securing-your-server) guide. -3. Configure a LAMP stack using the [Hosting a Website](/docs/websites/hosting-a-website) guide. +3. Configure a LAMP stack using the [Hosting a Website](/docs/websites/hosting-a-website) guide. -4. Install Drush and a Drupal website core with the [Installing & Using Drupal Drush on Debian 7](/docs/websites/cms/drush-drupal) guide. +4. Install Drush and a Drupal website core with the [Installing & Using Drupal Drush on Debian 7](/docs/websites/cms/drush-drupal) guide. -5. Make sure that your system is up to date, using: +5. Make sure that your system is up to date, using: - sudo apt-get update && sudo apt-get upgrade + sudo apt-get update && sudo apt-get upgrade {{< note >}} @@ -43,49 +43,49 @@ This guide is written for a non-root user. Commands that require elevated privil Downloading, enabling, and setting the theme is extremely easy with Drupal Drush. -1. Find a theme to download. The Drush download name is usually in the release notes under the "Downloads" section on any drupal.org/project/project_theme theme page. Spaces are either removed or replaced with an underscore. Pictured below is an example. Here, "corporateclean" would be used in the Drush command: +1. Find a theme to download. The Drush download name is usually in the release notes under the "Downloads" section on any drupal.org/project/project_theme theme page. Spaces are either removed or replaced with an underscore. Pictured below is an example. Here, "corporateclean" would be used in the Drush command: [![Corporate Clean Drupal Theme Notes.](/docs/assets/corporate-clean-drupal-theme-name.png)](/docs/assets/corporate-clean-drupal-theme-name.png) - {{< note >}} + {{< note >}} At the time of this guide's publication, this theme is not yet available for Drupal 8 beta. If you're using this version of Drupal, select another theme to replace Corporate Clean for this example. {{< /note >}} -2. While logged in as the website owner, download and enable the theme: +2. While logged in as the website owner, download and enable the theme: - drush en corporateclean -y + drush en corporateclean -y - {{< note >}} + {{< note >}} Notice the warning that "corporateclean was not found." The `drush en` command looks for the theme or module locally before downloading. {{< /note >}} -3. Set Corporate Clean as the default, active theme: +3. Set Corporate Clean as the default, active theme: - drush vset theme_default corporateclean + drush vset theme_default corporateclean - Check the homepage of your site and the new theme should appear. + Check the homepage of your site and the new theme should appear. ## Installing Modules with Drush Downloading and enabling a module is similar to working with a theme. However, modules can be used for almost any purpose. From enhancing public-facing functionality to providing a better administrative UI, there are thousands of Drupal modules. Try to find modules with clear documentation. Once installed, the browser interface can still be challenging. -1. To download a popular module called Commerce, first install the supporting modules. There are several: +1. To download a popular module called Commerce, first install the supporting modules. There are several: - drush en addressfield ctools entity rules token views views_ui -y + drush en addressfield ctools entity rules token views views_ui -y -2. Now that the supporting modules have been installed, download and enable Commerce: +2. Now that the supporting modules have been installed, download and enable Commerce: - drush en commerce -y + drush en commerce -y - {{< note >}} + {{< note >}} Notice that Commerce includes 21 sub-modules. Each has its own functionality and most have a control switch within the admin's browser interface. {{< /note >}} -3. Sign in to the Drupal browser interface and click on the "Modules" selection. +3. Sign in to the Drupal browser interface and click on the "Modules" selection. [![Drupal Modules Selection.](/docs/assets/drupal-modules-selection.png)](/docs/assets/drupal-modules-selection.png) -4. Next, scroll down to the "Commerce" module set, pictured below. Start checking or turning on the different Commerce sub-modules. Finally, select the "Save configuration" button at the very bottom of the page. +4. Next, scroll down to the "Commerce" module set, pictured below. Start checking or turning on the different Commerce sub-modules. Finally, select the "Save configuration" button at the very bottom of the page. [![Drupal Modules Page.](/docs/assets/drupal-modules-page.png)](/docs/assets/drupal-modules-page.png) @@ -93,21 +93,21 @@ You have successfully installed and turned on a new module. The module is now ru ## Backup a Drupal Site with Drush -It's always important to keep regular backups of a website. Backups protect you from losing data due to configuration changes, vulnerabilites, or system failures. Backups should be stored on a separate system whenever possible. Drush has built-in tools to help create backups of your site. +It's always important to keep regular backups of a website. Backups protect you from losing data due to configuration changes, vulnerabilities, or system failures. Backups should be stored on a separate system whenever possible. Drush has built-in tools to help create backups of your site. -1. While in the `/drupal` directory, create a .tar.gz back-up file containing the site database and site files with: +1. While in the `/drupal` directory, create a .tar.gz back-up file containing the site database and site files with: - drush archive-dump + drush archive-dump *The site has been backed up locally.* Notice the backup has been created and placed in the `/home/user/drush-backups/archive-dump/` directory in a folder time stamped with its creation time. Drush saves your data into a .tar.gz archive file, containing the Drupal site folder and a copy of the MySql database. -2. To copy the file to a remote backup location, use the rsync command. Replace the `date-time-stamp`, `examplesitename.date-time-stamp.tar.gz`, `user`, `ip-address`, and `/user/` with the appropriate inputs: +2. To copy the file to a remote backup location, use the rsync command. Replace the `date-time-stamp`, `examplesitename.date-time-stamp.tar.gz`, `user`, `ip-address`, and `/user/` with the appropriate inputs: - rsync -avz /home/user/drush-backups/achive-dump/date-time-stamp/examplesitename.date-time-stamp.tar.gz user@ip-address:/home/user/ + rsync -avz /home/user/drush-backups/archive-dump/date-time-stamp/examplesitename.date-time-stamp.tar.gz user@ip-address:/home/user/ -3. To revert back to a previously saved version of your site: +3. To revert back to a previously saved version of your site: - drush archive-restore /home/user/drush-backups/achive-dump/date-time-stamp/examplesitename.date-time-stamp.tar.gz + drush archive-restore /home/user/drush-backups/archive-dump/date-time-stamp/examplesitename.date-time-stamp.tar.gz This will recreate the `drupal` folder, which you can then manually move into your web directory. @@ -115,11 +115,11 @@ It's always important to keep regular backups of a website. Backups protect you The backup process above can be automated. You must create an SHH Pair Key, a Bash script, and use Cron automation. -1. Create SSH Key Pair Authentication *without a password* for the Linode hosting your Drupal site, and pass the public key to the backup server. This is a simple task. It's covered in the Using [SSH Key Pair Authentication](/docs/security/securing-your-server#create-an-authentication-key-pair) section of the [Securing Your Server](/docs/security/securing-your-server) guide. +1. Create SSH Key Pair Authentication *without a password* for the Linode hosting your Drupal site, and pass the public key to the backup server. This is a simple task. It's covered in the Using [SSH Key Pair Authentication](/docs/security/securing-your-server#create-an-authentication-key-pair) section of the [Securing Your Server](/docs/security/securing-your-server) guide. -2. On the Drupal hosting Linode, create a Bash script file. In the file excerpt below, replace `example.com` and the rsync command inputs from step 2 above: +2. On the Drupal hosting Linode, create a Bash script file. In the file excerpt below, replace `example.com` and the rsync command inputs from step 2 above: - nano drupal-backup.sh + nano drupal-backup.sh {{< file "~/drupal-backup.sh" >}} #!/bin/bash @@ -131,13 +131,13 @@ rsync -avz /home/local-user/drush-backups/archive-dump/ remote-user@remote-ip-ad {{< /file >}} -3. Make the script file executable: +3. Make the script file executable: - chmod +x drupal-backup.sh + chmod +x drupal-backup.sh -4. Open and edit the Crontab file: +4. Open and edit the Crontab file: - crontab -e + crontab -e {{< file-excerpt "/tmp/crontab.A6VByT/crontab" >}} # For example, you can run a backup of all your user accounts @@ -152,9 +152,9 @@ rsync -avz /home/local-user/drush-backups/archive-dump/ remote-user@remote-ip-ad {{< /file-excerpt >}} - This back up configuration creates a saved version once a week. The Cron timer is set for 12:01 a.m. every Sunday. There are many ways to configure a back up with additional options to consider. Check our [Cron](/docs/tools-reference/tools/schedule-tasks-with-cron) guide for more information. + This back up configuration creates a saved version once a week. The Cron timer is set for 12:01 a.m. every Sunday. There are many ways to configure a back up with additional options to consider. Check our [Cron](/docs/tools-reference/tools/schedule-tasks-with-cron) guide for more information. - This backup system leaves saved versions of the site and database on both the local and remote Linodes. Depending on the disk size of your Linode, you may want to occasionally delete older backup versions. The deletion task could be automated within the Bash script above. Since the Cron timer is only set for once a week, disk usage is probably not a large concern. There are many configuration options to consider. + This backup system leaves saved versions of the site and database on both the local and remote Linodes. Depending on the disk size of your Linode, you may want to occasionally delete older backup versions. The deletion task could be automated within the Bash script above. Since the Cron timer is only set for once a week, disk usage is probably not a large concern. There are many configuration options to consider. ## Next Steps diff --git a/docs/websites/cms/turbocharge-wordpress-search-with-solr.md b/docs/websites/cms/turbocharge-wordpress-search-with-solr.md index 4f675daf35e..a1a51db2dd1 100644 --- a/docs/websites/cms/turbocharge-wordpress-search-with-solr.md +++ b/docs/websites/cms/turbocharge-wordpress-search-with-solr.md @@ -28,7 +28,7 @@ This guide is written for a non-root user. Commands that require elevated privil - WordPress must be already installed and configured. If you have not yet installed WordPress, follow the [Manage Web Content with WordPress](/docs/websites/cms/manage-web-content-with-wordpress) guide. -- Much of this guide assumes that Solr is being installed on the same server as WordPress; however, Solr can be installed on a second server for security or scalibility reasons. Alternate steps are provided should Solr be installed on a second server. +- Much of this guide assumes that Solr is being installed on the same server as WordPress; however, Solr can be installed on a second server for security or scalability reasons. Alternate steps are provided should Solr be installed on a second server. ## Install Java @@ -418,7 +418,7 @@ If it shows similar output, Solr is installed and configured correctly: If Solr is installed on a different server from WordPress, repeat the test from the WordPress server by sending a request to the Solr server: - curl http://HOSTNAME-OR-IP-OF-SOLR-SERVER:8983/solr/collection1/select + curl http://HOSTNAME-OR-IP-OF-SOLR-SERVER:8983/solr/collection1/select ## Install and Configure WPSolr @@ -470,7 +470,7 @@ If Solr is installed on a different server from WordPress, repeat the test from - **Post types to be indexed**: Selecting all of them is recommended. **Post** indexes all blog posts, **page** all pages (such as about pages), and **attachment** all documents (such as PDFs and DOC files). - - **Custom taxonomies to be indexed**: Generally there is no need to enter anything here; however, if Wordpress has been customized to organize blog posts in ways other than categories and tags, enter the name of the taxonomy here. + - **Custom taxonomies to be indexed**: Generally there is no need to enter anything here; however, if WordPress has been customized to organize blog posts in ways other than categories and tags, enter the name of the taxonomy here. - **Custom fields to be indexed**: Generally there is no need to select anything here. diff --git a/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04.md b/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04.md index 0882b4c6ed3..e3e2273638d 100644 --- a/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04.md +++ b/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04.md @@ -16,7 +16,7 @@ contributor: --- -![Prestashop_banner](/docs/assets/PrestaShop.jpg) +![How to Install PrestaShop of Ubuntu 16.04 LTS](/docs/assets/PrestaShop.jpg) ## What is PrestaShop? @@ -236,7 +236,7 @@ You can also use: ![SSL switches turned on in settings](/docs/assets/prestashop-ubuntu1604-SSL-switches.png) -2. Go back to the left menu, and as your mouse pointer hovers on top of **Shop Parameters** you'll see a submenu pop up. Click on **Traffic and SEO**. Scroll down until you find the settings picured below: +2. Go back to the left menu, and as your mouse pointer hovers on top of **Shop Parameters** you'll see a submenu pop up. Click on **Traffic and SEO**. Scroll down until you find the settings pictured below: ![PrestaShop SEO and URL settings](/docs/assets/prestashop-ubuntu1604-SEO-and-URL-switches.png) diff --git a/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04.md b/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04.md index 81b58573b7c..288752893eb 100644 --- a/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04.md +++ b/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04.md @@ -25,7 +25,7 @@ external_resources: [AskBot](https://askbot.com) is an open-source question-and-answer forum written in Django and Python. It provides features similar to StackOverflow, including a karma-based system, voting, and content moderation. It is used by many popular open source communities such as Ask-FedoraProject and Ask-OpenStack. -In this guide, you'll install AskBot and deploy with **Nginx** as a web server, **MySQL** as a database server, **Gunicorn** as a Python WSGI HTTP Server and **LetsEncrypt** as a free SSL certificates provider on your Ubuntu 16.04 Linode. +In this guide, you'll install AskBot and deploy with **NGINX** as a web server, **MySQL** as a database server, **Gunicorn** as a Python WSGI HTTP Server and **LetsEncrypt** as a free SSL certificates provider on your Ubuntu 16.04 Linode. ## Before You Begin @@ -45,7 +45,7 @@ Throughout this guide, replace `example_user` with a non-root user with `sudo` a ## Install Dependencies and Create a Database -1. Install the required packages, including Nginx, MySQL, Python PIP, and LetsEncrypt: +1. Install the required packages, including NGINX, MySQL, Python PIP, and LetsEncrypt: sudo apt-get install -y python-pip python-dev nginx mysql-server libmysqlclient-dev letsencrypt @@ -120,7 +120,7 @@ For more detailed information about the arguments to `askbot-setup`, user the `- sed -i "s|STATIC_URL = '/m/'|STATIC_URL = '/static/'|" /home/example_user/askbot/settings.py -## Deploy AskBot with LetsEncrypt SSL +## Deploy AskBot with Let's Encrypt SSL {{< note >}} This section requires that you have a Fully Qualified Domain Name (FQDN) that is configured to point to your Linode. In the examples below, replace `example.com` with your FQDN. @@ -162,20 +162,20 @@ WantedBy=multi-user.target sudo systemctl start gunicorn sudo systemctl enable gunicorn -4. Restart nginx and reload the daemon: +4. Restart NGINX and reload the daemon: sudo systemctl daemon-reload sudo systemctl restart nginx -5. Use [Letsencrypt](/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates) to obtain an SSL certificate for your domain: +5. Use [Let's Encrypt](/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates) to obtain an SSL certificate for your domain: sudo letsencrypt certonly -a webroot --agree-tos --email admin@example.com --webroot-path=/var/www/html -d example.com -d www.example.com -6. Remove the default Nginx Server Blocks (Virtual Host) and the default Nginix index file to add new AskBot server blocks: +6. Remove the default NGINX Server Blocks (Virtual Host) and the default NGINX index file to add new AskBot server blocks: sudo rm -rf /etc/nginx/sites-available/default /etc/nginx/sites-enabled/default /var/www/html/index.nginx-debian.html -7. Add new `askbot` Nginx Server Blocks (Virtual Host) to run AskBot in the production environment: +7. Add new `askbot` NGINX Server Blocks (Virtual Host) to run AskBot in the production environment: {{< file-excerpt "/etc/nginx/sites-available/askbot" conf >}} server { @@ -188,12 +188,12 @@ server { listen 443; server_name example.com www.example.com; - ssl on; + ssl on; ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; - location ~ /.well-known { + location ~ /.well-known { allow all; root /var/www/html; } @@ -216,16 +216,16 @@ server { {{< /file-excerpt >}} -8. Add a symbolic link between nginx server blocks: +8. Add a symbolic link between NGINX server blocks: sudo ln -s /etc/nginx/sites-available/askbot /etc/nginx/sites-enabled -9. The **www-data** group must have access to AskBot installation directory so that nginx can serve static files, media files, and access the socket files. Add the `example_user` to **www-data** group so that it has the necessary permissions: +9. The **www-data** group must have access to AskBot installation directory so that NGINX can serve static files, media files, and access the socket files. Add the `example_user` to **www-data** group so that it has the necessary permissions: sudo usermod -aG www-data example_user -10. Restart nginx so that the changes take effect: +10. Restart NGINX so that the changes take effect: sudo systemctl restart nginx diff --git a/docs/websites/host-a-website-with-high-availability.md b/docs/websites/host-a-website-with-high-availability.md index a866c9d7bf1..2664607e6dc 100644 --- a/docs/websites/host-a-website-with-high-availability.md +++ b/docs/websites/host-a-website-with-high-availability.md @@ -22,11 +22,11 @@ external_resources: When deploying a website or application, one of the most important elements to consider is availability, or the period of time for which your content is accessible to users. High availability is a term used to describe server setups that eliminate single points of failure by offering redundancy, monitoring, and failover. This ensures that even if one component of your web stack goes down, the content will still be accessible. -In this guide, we'll explain how to host a highly available website with Wordpress. However, you can use this setup to serve other types of content as well. This guide is intended to be a tutorial on the setup of such a system. For more information on how each element in the high availability stack functions, refer to our [introduction to high availability](/docs/websites/introduction-to-high-availability). +In this guide, we'll explain how to host a highly available website with WordPress. However, you can use this setup to serve other types of content as well. This guide is intended to be a tutorial on the setup of such a system. For more information on how each element in the high availability stack functions, refer to our [introduction to high availability](/docs/websites/introduction-to-high-availability). ## 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. @@ -617,10 +617,10 @@ The final step in creating a highly available website or application is to load For instructions on how to install this component, follow our guide on [getting started with NodeBalancers](/docs/platform/nodebalancer/getting-started-with-nodebalancers). Be sure to use the *private* IP addresses of your application servers when adding nodes to your backend. {{< note >}} -Nodebalancers are an add-on service. Be aware that adding a Nodebalancer will create an additional monthly charge to your account. Please see our [Billing and Payments](/docs/platform/billing-and-payments#additional-linode-services) guide for more information. +NodeBalancers are an add-on service. Be aware that adding a NodeBalancer will create an additional monthly charge to your account. Please see our [Billing and Payments](/docs/platform/billing-and-payments#additional-linode-services) guide for more information. {{< /note >}} -## Wordpress (Optional) +## WordPress (Optional) If you're installing WordPress to manage your new highly available website, we'll explain how to do so here. If you're using your cluster to serve a custom application, website, or for another purpose, you may skip this section. @@ -643,13 +643,13 @@ If you're installing WordPress to manage your new highly available website, we'l systemctl restart httpd -5. On *just one* of your application servers, install the latest version of Wordpress into `/srv/www` and extract it: +5. On *just one* of your application servers, install the latest version of WordPress into `/srv/www` and extract it: cd /srv/www wget http://wordpress.org/latest.tar.gz tar -xvf latest.tar.gz - Optionally, you can create a backup of your original Wordpress archive in case you need to reinstall it at a later time: + Optionally, you can create a backup of your original WordPress archive in case you need to reinstall it at a later time: mv latest.tar.gz wordpress-`date "+%Y-%m-%d"`.tar.gz @@ -661,9 +661,9 @@ If you're installing WordPress to manage your new highly available website, we'l systemctl restart httpd -8. In a web browser, navigate to the IP address of one of your application nodes (or the NodeBalancer) to access the Wordpress admin panel. Use `wordpress` as the database name and user name, enter the password you configured in Step 2, and enter your floating IP address as the database host. For additional WordPress setup instruction, see our guide on [Installing and Configuring WordPress](/docs/websites/cms/how-to-install-and-configure-wordpress#configure-wordpress). +8. In a web browser, navigate to the IP address of one of your application nodes (or the NodeBalancer) to access the WordPress admin panel. Use `wordpress` as the database name and user name, enter the password you configured in Step 2, and enter your floating IP address as the database host. For additional WordPress setup instruction, see our guide on [Installing and Configuring WordPress](/docs/websites/cms/how-to-install-and-configure-wordpress#configure-wordpress). -Congratulations! You've successfully configured a highly available Wordpress site, and you're ready to start publishing content. For more information, feel free to reference our [Wordpress configuration guide](/docs/websites/cms/how-to-install-and-configure-wordpress). +Congratulations! You've successfully configured a highly available WordPress site, and you're ready to start publishing content. For more information, feel free to reference our [WordPress configuration guide](/docs/websites/cms/how-to-install-and-configure-wordpress). ## DNS Records diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5.md index f25fb54696f..87e448a8af7 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5.md @@ -115,7 +115,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js`. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php`. However a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php`. However a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny.md index c0834523d64..35eb4635ec1 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny.md @@ -119,7 +119,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` respectively. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12.md index b664eb53fc8..ef430b09174 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12.md @@ -113,7 +113,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14.md index fad3d961520..9f3ac73e9f1 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14.md @@ -113,7 +113,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid.md index 93934b7fcf6..2828b022f71 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid.md @@ -121,7 +121,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` respectively. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick.md index f3df2b7b227..ae1c115bf9c 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick.md @@ -121,7 +121,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` respectively. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin.md index 1d863326f5c..b5baa0139b9 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin.md @@ -119,7 +119,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` respectively. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: diff --git a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic.md b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic.md index a465c09a2c6..c80a7c79165 100644 --- a/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic.md +++ b/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic.md @@ -119,7 +119,7 @@ RewriteRule ^/wiki/(.*)$ http://app.example.com/mediawiki/$1 [proxy] In the first group we present three examples of requests for specific types of files that will be proxied to various directories in the `http://static.example.com/` host. Note that the entire contents of the parenthetical (e.g. `(.*)` in this case) will be passed to the proxy host. If you do not capture the extension of a request in the regular expression, you must add it to the rewritten location. Using the first example, assuming these rewrite rules are in the `example.com` virtual host, a requests for `http://example.com/toggle.js` and `http://example.com/blog/js/functions.js` are passed to `http://static.example.com/javascript/toggle.js` and `http://static.example.com/javascript/blog/js/functions.js` respectively. -In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. +In the second group of examples, rather than passing the entire request back to a proxy, we choose to only pass a part of the request. In the first rule of this group, a request for `http://example.com/blog/index.php` would be served from `http://app.example.com/wordpress/index.php` however a request for `http://example.com/wordpress/style.css` would not be passed to `app.example.com`; indeed, given the earlier rules, this request would be passed to `http://static.example.com/styles/wordpress/style.css`. In the second rule in this example, every request for a resource that begins with `http://example.com/wiki/` would be passed to `http://app.example.com/mediawiki/`. With this rewrite rule, both `http://example.com/wiki/index.php` and `http://example.com/wiki/info/about.html` would be rewritten as `http://app.example.com/mediawiki/index.php` and `http://app.example.com/mediawiki/info/about.html`. In order to ensure that your rewrite rules function as predicted, keep in mind the following: 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. diff --git a/themes/docsmith/layouts/_default/contribute.html b/themes/docsmith/layouts/_default/contribute.html index 5e644a6146c..dd5938ec432 100644 --- a/themes/docsmith/layouts/_default/contribute.html +++ b/themes/docsmith/layouts/_default/contribute.html @@ -23,11 +23,10 @@

Contribute to our Tutorials

- Simply choose a topic from the list below and submit a writing sample. - Once we’ve reviewed and approved your request, we’ll match you with one of our editors and you’ll be on your way to getting published in our rich knowledge base with over a million unique page views each month. - You’ll also make up to $300 depending on topic difficulty. + If you possess expert knowledge and technical writing know-how and would like to be considered as a prospective freelance technical writer for a future topic, please complete the form below.

- + +
@@ -65,54 +64,12 @@

Writing Sample

-

Essential Criteria for Each Guide

+

Writing Sample Criteria


-

Accuracy: Instructions should be straightforward, technically correct and thoroughly tested. Include brief explanations of each step to explain the purpose of each action.

-

Completeness: A guide should leave readers with a finished, working configuration and give them an idea of where to go from there. Considerations for security and best practices must also be made, including firewall rules.

-

Originality: Content should be original material written for Linode. We will not accept submissions which are duplicated from other sources.

- -

Sample Guides for Reference

- -

Here are some examples of exceptional community-contributed guides. The instructions in each are accurate, complete, original and thorough. Refer to these as guidelines for your own submission.

- - -
-
- -
-
-

Compensation Scale

-
- -
- Updates
(e.g., Ubuntu 14.04 to 16.04) -
- $100 -
-
- -
- Simple Tutorials
(500-999 words) -
- $200 -
-
- -
- Detailed Tutorials
(1,000+ words) -
- $300 -
-
- +

+ Your writing sample should indicate your capability to draft technical guides that address Linux, Linode, and cloud infrastructure topics, similar to those found in our library. Evaluation of your sample will be based on knowledge of the selected topic, depth of content, format, and–because we publish only in English–mastery of the language. + We will negotiate topics and rates with subject matter experts. Please do not recommend specific topics at this time, as they will not be accepted. +

diff --git a/themes/docsmith/layouts/partials/article_header.html b/themes/docsmith/layouts/partials/article_header.html index 748849553a6..798d559ff07 100644 --- a/themes/docsmith/layouts/partials/article_header.html +++ b/themes/docsmith/layouts/partials/article_header.html @@ -1,21 +1,24 @@

{{ .Params.title }}

Updated by {{ .Params.modified_by.name }} + {{ if .Params.contributor }} - Contributed by - {{ if .Params.contributor.link }} - {{ .Params.contributor.name }} - {{ if strings.Contains .Params.contributor.link "twitter.com" }} - - {{ else if strings.Contains .Params.contributor.link "github.com" }} - - {{ else if strings.Contains .Params.contributor.link "linkedin.com" }} - + Contributed by + {{ if .Params.contributor.link }} + {{ .Params.contributor.name }} + {{ if strings.Contains .Params.contributor.link "twitter.com" }} + + {{ else if strings.Contains .Params.contributor.link "github.com" }} + + {{ else if strings.Contains .Params.contributor.link "linkedin.com" }} + + {{ end }} + + {{ else }} + {{ .Params.contributor.name }} {{ end }} - {{ else }} - {{ .Params.contributor.name }} + Written by {{ .Params.author.name }} {{ end }} - {{ end }}

diff --git a/themes/docsmith/layouts/partials/contribute_footer.html b/themes/docsmith/layouts/partials/contribute_footer.html index d572de3b69a..a6539d14151 100644 --- a/themes/docsmith/layouts/partials/contribute_footer.html +++ b/themes/docsmith/layouts/partials/contribute_footer.html @@ -2,9 +2,9 @@
-

Get paid to write for Linode.

-

We're always expanding our docs. If you like to help people, can write, and want to earn some cash, learn how you can earn up to $300 for every guide you write and we publish.

+

Write for Linode.

+

We're always expanding our docs. If you like to help people, can write, and have expertise in a Linux or cloud infrastructure topic, learn how you can contribute to our library.

- \ No newline at end of file + diff --git a/themes/docsmith/layouts/partials/includes_body_end_prod.html b/themes/docsmith/layouts/partials/includes_body_end_prod.html index a1782f7e749..5cc8f0cafdf 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 100755 new mode 100644 diff --git a/themes/docsmith/static/build/js/libs.js b/themes/docsmith/static/build/js/libs.js old mode 100755 new mode 100644 diff --git a/themes/docsmith/static/build/js/libs.min.js b/themes/docsmith/static/build/js/libs.min.js old mode 100755 new mode 100644 diff --git a/themes/docsmith/static/build/js/main-fd1a58baa9.min.js b/themes/docsmith/static/build/js/main-fd1a58baa9.min.js new file mode 100644 index 00000000000..0bea4485e75 --- /dev/null +++ b/themes/docsmith/static/build/js/main-fd1a58baa9.min.js @@ -0,0 +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-363cce1f7b.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 bc28d03a4f7..484c8b673f1 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-7c9f016210.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-363cce1f7b.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); diff --git a/themes/docsmith/static/build/lunr-363cce1f7b.json b/themes/docsmith/static/build/lunr-363cce1f7b.json new file mode 100644 index 00000000000..08e674bf612 --- /dev/null +++ b/themes/docsmith/static/build/lunr-363cce1f7b.json @@ -0,0 +1 @@ +{"store":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{"title":"Archive, Compress, and Extract Files in Linux Using the Command Line","deprecated":null,"shortguide":null},"/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/tools-reference/tools/divide-files-with-split/":{"title":"How to Divide Files with split","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/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 Icinga 2 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/web-servers/caddy/compile-caddy-from-source/":{"title":"How To Build Caddy From Source","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":"How to Install FarmOS - a Farm Recordkeeping Application","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/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/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/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/quick-answers/linux/compress-files-using-the-command-line/",[0,4.48,1,3.947,2,4.052,3,1.634,4,1.679,5,0.761,6,2.289,7,3.17]],["keywords//docs/quick-answers/linux/compress-files-using-the-command-line/",[8,5.63,9,7.051,10,7.051,11,7.051]],["toc//docs/quick-answers/linux/compress-files-using-the-command-line/",[0,8.838,1,6.235,2,6.401,12,3.986,13,7.076,14,7.854,15,5.835,16,3.533]],["deprecated//docs/quick-answers/linux/compress-files-using-the-command-line/",[]],["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[17,1.247,18,6.18,19,3.292,20,3.502,21,1.345,22,1.507]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[19,3.451,20,3.671,21,1.41,23,5.627,24,5.173]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[17,1.959,19,6.14,25,6.777]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[26,0.067,27,5.631,28,0.86]],["keywords//docs/development/java/install-java-jdk/",[27,5.52,29,3.939,30,6.417]],["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/",[5,0.871,20,3.502,21,1.345,24,4.935,31,3.721,32,1.842]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[19,3.451,20,3.671,21,1.41,23,5.627,24,5.173]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[19,5.991,22,1.939,25,5.552,31,4.788,32,2.37,33,1.854,34,1.871,35,4.158,36,4.668,37,4.612]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[38,4.409,39,6.652,40,3.178,41,6.652]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[39,6.492,42,7.051,43,7.051,44,5.63]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[17,1.105,26,0.067,32,2.355,38,3.343,40,3.476,41,9.909,45,1.186,46,2.365,47,1.076,48,3.61,49,2.336,50,3.824,51,0.316,52,5.477,53,5.477,54,1.931,55,2.194,56,2.218,57,3.909,58,1.817,59,3.176,60,5.043,61,2.44,62,2.409]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[5,0.812,47,1.133,48,3.799,49,2.458,63,2.032,64,5.006,65,0.924]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[66,5.85,67,4.191,68,6.492,69,6.492]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[26,0.069,32,2.425,33,1.896,34,1.915,45,1.221,48,5.363,49,3.47,64,8.981,65,1.658]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/tools-reference/tools/divide-files-with-split/",[3,2.388,70,7.891,71,6.853]],["keywords//docs/tools-reference/tools/divide-files-with-split/",[3,2.134,71,6.124,72,4.303,73,6.492]],["toc//docs/tools-reference/tools/divide-files-with-split/",[3,3.017,7,3.672,16,2.591,35,4.54,45,0.939,54,2.205,71,9.355,74,4.465,75,4.368,76,6.256,77,7.203,78,5.19,79,5.76,80,6.256,81,6.256,82,5.434,83,3.718]],["deprecated//docs/tools-reference/tools/divide-files-with-split/",[]],["title//docs/development/go/install-go-on-ubuntu/",[26,0.067,28,0.86,84,4.884]],["keywords//docs/development/go/install-go-on-ubuntu/",[28,0.769,84,4.364,85,7.051,86,5.85]],["toc//docs/development/go/install-go-on-ubuntu/",[26,0.092,84,6.695,87,5.264,88,7.593,89,5.98,90,2.655]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[26,0.061,28,0.787,66,5.993,91,1.3]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[66,5.85,67,4.191,68,6.492,69,6.492]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[26,0.066,28,0.848,64,6.754,66,8.333,91,1.399,92,3.801,93,5.319,94,3.018,95,2.353,96,7.776,97,7.16,98,5.684]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[99,5.768,100,7.224,101,6.275,102,6.275]],["keywords//docs/platform/meltdown_statement/",[101,6.124,102,6.124,103,5.291,104,3.474]],["toc//docs/platform/meltdown_statement/",[61,1.797,99,3.22,101,5.455,102,3.503,103,3.026,104,3.8,105,4.033,106,4.033,107,7.222,108,4.033,109,4.033,110,1.671,111,4.033,112,4.033,113,6.281,114,3.026,115,4.482,116,4.591,117,6.281,118,2.879,119,2.888,120,1.22,121,6.281,122,3.503,123,4.033,124,4.033,125,4.591,126,2.019,127,3.714,128,2.816,129,2.237,130,2.316,131,1.912,132,3.026,133,3.503,134,4.033,135,4.033]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[5,1.018,26,0.061,136,4.848,137,4.094]],["keywords//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[136,4.021,137,3.396,138,4.379,139,4.183,140,3.561,141,5.992]],["toc//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[26,0.052,29,3.13,33,1.433,34,1.446,136,7.174,137,6.6,142,2.227,143,5.339,144,4.908,145,6.147,146,6.147,147,6.147,148,7.449,149,2.147,150,4.493,151,3.804]],["deprecated//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[]],["title//docs/development/python/install_python_miniconda/",[26,0.061,55,2.894,152,5.581,153,6.652]],["keywords//docs/development/python/install_python_miniconda/",[153,7.122,154,7.735,155,7.735]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[26,0.061,28,0.787,91,1.3,136,4.848]],["keywords//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[136,4.348,156,5.627,157,2.079,158,5.965,159,1.821]],["toc//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_centos/",[26,0.053,136,4.148,157,1.983,159,1.737,160,6.18,161,6.18]],["keywords//docs/databases/elasticsearch/install_elasticsearch_centos/",[136,4.348,156,5.627,157,2.079,158,5.965,159,1.821]],["toc//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["title//docs/applications/containers/install_docker_ce/",[26,0.067,162,3.428,163,6.096]],["keywords//docs/applications/containers/install_docker_ce/",[162,3.36,164,4.121,165,7.735]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[26,0.067,162,3.428,166,5.767]],["keywords//docs/applications/containers/install_docker_compose/",[162,3.36,164,4.121,167,7.735]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[4,2.453,26,0.067,168,4.053]],["keywords//docs/development/version-control/how-to-install-git-linux/",[4,2.405,168,3.973,169,4.598]],["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/",[26,0.067,168,4.053,170,4.576]],["keywords//docs/development/version-control/how-to-install-git-mac/",[168,3.973,169,4.598,170,4.486]],["toc//docs/development/version-control/how-to-install-git-mac/",[26,0.1,95,2.353,168,5.715,171,7.211,172,7.16,173,7.16]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[26,0.067,168,4.053,174,4.018]],["keywords//docs/development/version-control/how-to-install-git-windows/",[168,3.973,169,4.598,174,3.939]],["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/",[175,5.102,176,7.211]],["keywords//docs/development/introduction-to-websockets/",[176,5.85,177,4.648,178,7.051,179,7.051]],["toc//docs/development/introduction-to-websockets/",[17,1.413,65,1.123,176,10.429,180,4.616,181,7.003,182,3.023,183,5.254,184,5.809,185,6.448,186,6.448,187,3.506]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[63,2.781,162,3.428,188,6.853]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[46,2.406,47,1.095,162,2.421,188,4.84,189,4.84,190,5.131,191,2.941]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[5,0.914,26,0.076,33,1.512,34,1.526,46,2.8,47,1.275,90,1.97,142,2.35,162,4.415,164,3.456,166,6.507,188,7.732,192,3.636,193,1.863,194,5.011,195,5.011,196,4.741]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[5,1.112,162,3.428,166,5.767]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[162,3.721,166,6.261]],["toc//docs/applications/containers/how-to-use-docker-compose/",[3,1.657,26,0.067,33,1.277,34,1.289,40,2.409,47,1.076,54,1.931,58,3.075,61,2.44,62,2.409,74,3.909,162,4.027,163,4.231,166,6.776,197,3.824,198,2.765,199,2.126,200,5.043,201,4.757,202,3.909,203,3.254,204,2.506,205,3.39,206,3.39]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,2.186,207,7.224,208,5.993,209,6.275]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[55,3.099,73,7.122,209,6.719]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,1.71,5,1.139,12,4.41,15,3.867,26,0.069,55,2.265,120,1.71,159,1.589,171,3.664,209,9.463,210,5.653,211,4.91,212,9.436,213,5.653,214,2.929,215,5.653,216,3.726,217,5.653,218,3.794,219,4.034]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[162,3.428,164,4.204,182,3.407]],["keywords//docs/applications/containers/docker-container-communication/",[22,1.719,162,3.063,164,3.757,220,7.051]],["toc//docs/applications/containers/docker-container-communication/",[5,0.76,17,1.089,22,1.315,26,0.067,32,1.607,33,1.257,34,1.269,35,2.82,45,0.809,46,2.328,51,0.311,151,3.338,162,4.377,163,4.166,164,5.368,166,3.942,182,3.968,199,2.093,221,3.555,222,3.849,223,3.765,224,3.128,225,1.395,226,3.206]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[225,1.869,227,2.09,228,3.477,229,5.581]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[91,1.269,227,2.04,229,5.447,230,6.492]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[32,1.607,33,1.257,34,1.269,45,0.809,51,0.311,150,5.712,159,1.516,171,5.065,187,2.7,202,3.849,225,2.377,227,3.095,228,3.761,229,7.1,231,4.601,232,2.26,233,3.056,234,2.991,235,2.503,236,4.966]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[22,1.761,31,4.35,32,2.153,46,3.119]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[19,3.192,46,2.587,237,3.883,238,5.992,239,5.992,240,5.992]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[19,3.806,22,2.603,33,1.665,34,1.681,36,4.194,37,4.144,61,3.184,62,3.143,228,3.439,241,4.63,242,4.795,243,5.099,244,7.145,245,4.988,246,5.099]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[40,3.178,247,4.409,248,6.652,249,6.652]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[247,5.749,250,7.051,251,5.63]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[3,1.56,5,1.065,19,2.747,25,3.6,33,1.202,34,1.213,120,1.56,247,3.147,248,9.083,249,9.083,251,8.388,252,3.983,253,5.156,254,2.625,255,4.747,256,7.563,257,4.75,258,4.478,259,3.68,260,3.983,261,4.478,262,2.376,263,3.769]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,1.87,159,1.737,232,2.589,264,3.324,265,5.127,266,5.368]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[266,6.719,267,4.787,268,7.735]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[20,3.817,22,1.642,26,0.095,33,1.57,34,1.585,65,1.464,84,4.168,193,1.934,266,5.849,269,0.93,270,1.73,271,6.735,272,2.499,273,3.021,274,4.168,275,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/",[5,0.871,50,4.315,119,1.892,193,1.775,228,2.974,276,3.628]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[50,4.183,119,1.834,162,2.603,164,3.192,228,2.884,277,5.517]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,1.378,5,1.172,12,2.129,26,0.071,32,1.358,45,0.684,47,0.895,50,3.18,61,2.03,62,2.004,119,1.394,120,1.378,162,1.979,164,4.433,182,2.977,192,5.202,225,1.178,228,4.005,276,4.884,277,6.349,278,2.45,279,4.555,280,4.555,281,3.957,282,4.555,283,3.957,284,3.779,285,4.555,286,2.427,287,4.555]],["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/",[5,0.715,47,0.998,65,0.814,138,3.713,159,1.428,193,1.459,227,1.47,232,2.128,288,2.911]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[47,1.095,159,1.566,193,1.601,288,3.194,289,5.573,290,5.573,291,5.573]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[5,0.748,17,1.072,26,0.078,33,1.238,34,1.25,44,4.241,47,1.044,51,0.306,136,5.187,138,5.649,288,5.222,292,4.406,293,2.83,294,4.104,295,2.448,296,3.791,297,9.111,298,9.111,299,6.412,300,4.241,301,5.312,302,4.241,303,3.882]],["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/",[304,6.275,305,3.679,306,6.652,307,6.652]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[40,2.85,55,2.595,304,5.627,308,6.478,309,6.478]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[26,0.073,32,1.413,37,2.749,40,2.085,45,0.711,55,1.899,89,3.242,185,4.364,193,1.361,198,2.393,203,1.952,272,1.759,273,2.126,304,4.117,306,7.847,307,8.717,310,2.112,311,4.739,312,3.556,313,5.673,314,4.739,315,2.657,316,3.661,317,3.932,318,4.739,319,2.782,320,3.124,321,7.105,322,4.739,323,4.364,324,4.739,325,2.817,326,3.661]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[26,0.053,91,1.112,93,4.227,227,1.788,229,4.774,231,3.094]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[91,1.269,227,2.04,229,5.447,230,6.492]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[5,0.642,17,0.919,22,1.111,26,0.059,33,1.062,34,1.072,51,0.397,171,4.469,193,2.39,229,8.103,231,5.252,236,4.194,327,4.555,328,4.194,329,3.18,330,3.637,331,4.521,332,1.118,333,3.33,334,3.18,335,4.628,336,2.861,337,3.2,338,2.192,339,2.78,340,1.666]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[46,3.753,51,0.501]],["keywords//docs/databases/postgresql/configure-postgresql/",[22,1.359,46,2.406,237,3.612,341,2.451,342,5.573,343,5.573,344,5.573]],["toc//docs/databases/postgresql/configure-postgresql/",[3,1.927,15,4.357,16,3.641,22,1.553,33,1.485,34,1.499,46,3.795,51,0.506,149,3.071,237,4.128,336,4,345,4.198,346,6.369,347,3.942,348,3.361,349,6.369,350,6.369,351,1.759,352,6.369]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[17,1.09,28,0.589,49,2.303,65,0.866,159,1.518,232,2.263,353,5.4,354,4.69]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[28,0.653,49,2.555,159,1.684,354,5.204,355,5.992,356,5.992]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[17,1.026,26,0.076,33,1.185,34,1.196,51,0.293,57,3.627,58,1.685,65,1.2,84,3.145,94,1.972,170,2.947,174,2.588,187,4.905,216,3.35,275,3.476,310,2.264,338,2.446,354,9.809,357,2.221,358,4.057,359,5.082,360,4.679,361,3.476,362,2.947,363,3.06]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[183,5.421,227,2.09,364,5.156,365,6.275]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[55,2.595,227,1.874,365,5.627,366,6.478,367,6.478]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[17,1.939,26,0.07,32,1.741,45,0.877,55,2.34,56,2.365,90,1.774,110,2.419,120,1.767,148,5.073,152,4.512,183,6.208,203,2.405,364,4.168,365,5.073,368,3.785,369,9.608,370,5.841,371,4.168,372,3.92,373,4.078,374,5.841]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[5,1.018,375,6.275,376,4.848,377,6.652]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[144,4.45,375,4.84,376,3.74,377,5.131,378,4.84,379,5.131,380,3.977]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[3,1.963,6,2.75,17,1.309,26,0.055,51,0.374,120,3.075,144,5.179,174,3.303,375,10.728,378,5.634,379,5.972,380,6.353]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[2,4.637,5,0.871,40,2.719,381,5.368,382,5.69,383,5.368]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[55,2.595,381,5.627,384,5.965,385,5.965,386,6.478]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[5,0.532,6,1.6,7,2.215,17,0.762,26,0.071,33,0.88,34,0.888,45,1.109,55,1.512,91,0.679,93,2.581,110,1.563,115,2.693,152,2.915,159,1.061,169,2.243,192,3.342,203,1.554,227,1.092,232,1.581,286,2.011,317,3.131,320,2.488,337,1.751,351,2.04,381,7.291,384,3.475,385,6.804,387,3.475,388,2.635,389,3.774,390,1.038,391,3.864,392,2.073,393,2.446,394,3.774,395,2.03,396,3.774,397,0.546,398,3.475,399,2.758,400,2.189,401,2.272,402,1.789,403,2.693,404,2.635]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[32,1.842,45,0.928,246,4.411,405,5.69,406,5.368,407,5.69]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[55,2.595,246,4.623,341,2.85,406,5.627,408,6.478]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[26,0.089,33,1.202,34,1.213,55,3.03,110,3.71,152,3.983,192,4.239,199,2.001,227,2.188,246,3.68,320,3.399,341,3.327,351,1.424,387,4.747,390,1.419,406,9.124,407,4.747,409,6.039,410,3.68,411,5.156,412,5.156]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[63,2.781,224,4.576,413,6.853]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[162,3.063,164,3.757,413,6.124,414,5.85]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[26,0.086,58,2.151,63,2.286,142,2.35,162,2.818,163,5.011,192,3.636,203,2.671,224,3.762,225,1.678,413,9.501,415,4.437,416,3.959,417,5.011,418,4.529,419,5.972,420,4.867]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[26,0.053,47,1.214,51,0.356,63,2.178,341,2.719,414,5.127]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[47,1.273,63,2.284,162,2.814,164,3.451,414,5.374]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[26,0.073,33,1.12,34,1.131,45,0.721,47,0.944,51,0.277,63,1.693,119,2.197,142,1.741,162,3.118,203,1.979,225,1.243,233,4.869,234,3.98,263,3.512,341,3.157,414,9.458,421,3.064,422,2.61,423,1.767,424,3.985,425,4.804,426,4.804,427,4.804,428,3.064]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[5,1.224,162,3.776]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[162,3.36,164,4.121,429,7.735]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[5,1.547,151,5.548,162,5.16,430,7.437]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[5,0.871,98,4.517,267,3.825,269,0.853,390,1.701,431,5.69]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[432,4.84,433,5.573,434,5.573,435,4.073,436,5.573,437,5.573,438,5.573]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[21,1.656,26,0.065,65,1.22,119,2.329,126,3.809,162,3.305,182,3.285,348,4.015,431,10.139,435,5.561,439,4.581,440,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[28,0.787,36,4.24,198,3.647,441,6.275]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[36,4.139,441,6.124,442,6.492,443,7.051]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[26,0.046,32,0.997,33,0.779,34,0.787,35,1.748,36,1.963,44,2.67,45,0.502,51,0.193,56,1.354,63,1.179,89,2.287,90,1.644,110,1.385,137,1.895,150,2.444,197,2.334,198,1.688,199,2.1,221,2.204,258,2.904,315,1.874,320,2.204,325,1.987,326,2.583,345,2.204,392,1.163,395,1.799,441,7.473,442,7.213,444,3.344,445,3.344,446,3.141,447,2.069,448,5.411,449,5.411,450,3.344,451,3.344,452,2.583,453,3.079,454,2.774,455,2.1,456,3.344,457,8.604,458,3.344,459,2.774,460,3.344,461,5.411,462,3.344,463,3.344,464,2.774,465,3.344,466,3.344,467,3.344]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[28,0.726,32,1.985,45,1,468,5.526,469,3.452]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[468,7.106,469,4.439]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[26,0.054,32,1.898,45,0.956,51,0.367,58,2.112,61,2.838,62,2.802,65,1.409,90,1.935,104,3.138,110,2.638,130,1.913,182,3.795,187,4.401,338,3.065,339,3.887,468,9.004]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[470,6.652,471,5.768,472,5.993,473,6.275]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[55,2.825,471,5.63,473,6.124,474,3.687]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[3,1.767,5,0.823,17,1.179,26,0.05,33,1.361,34,1.374,51,0.337,126,2.924,203,2.405,415,3.995,418,4.078,471,6.606,472,6.864,473,7.186,474,3.054,475,5.073,476,4.982,477,5.841,478,3.85,479,5.841,480,3.274,481,5.841,482,2.811,483,5.841]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[5,0.938,63,2.348,199,2.585,276,3.91,484,5.786]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[162,3.36,276,4.54,484,6.719]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[32,2.139,33,1.12,34,1.131,35,5.799,45,1.077,51,0.414,61,2.141,62,2.113,86,3.985,110,1.99,169,2.855,196,3.512,199,3.334,203,1.979,484,8.86,485,4.804,486,2.278,487,2.723,488,4.804,489,4.804,490,7.177,491,3.167,492,5.122,493,4.804]],["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/",[5,0.938,119,2.039,192,3.734,281,5.786,494,5.786]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[119,2.158,128,4.923,137,3.996,494,6.124]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[26,0.073,28,0.524,33,1.12,34,1.131,35,2.512,51,0.549,54,2.53,63,1.693,65,1.378,83,2.855,86,3.985,87,2.893,90,1.459,92,2.348,119,2.917,120,1.454,128,5.011,137,2.723,198,2.426,226,2.855,245,3.354,273,3.219,452,3.711,494,7.463,495,3.017,496,4.173]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[119,2.039,120,2.016,203,2.743,497,5.526,498,4.123]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[402,3.072,497,5.374,498,4.01,499,2.294,500,4.861]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[203,4.455,214,4.53,245,6.103,497,8.973,498,6.695]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[501,6.546,502,7.891,503,6.096]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[103,4.861,501,5.374,503,5.005,504,6.478,505,6.478]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[26,0.076,33,2.09,34,2.11,175,5.262,351,2.475,501,7.437,503,6.926]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[5,1.018,329,5.044,506,5.581,507,5.421]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[506,5.976,508,6.176,509,5.804]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[26,0.069,33,1.896,34,1.915,51,0.596,227,2.354,329,5.68,392,2.829,439,4.899,506,6.285,507,6.105]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[5,1.018,28,0.787,92,3.531,510,6.275]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[510,4.524,511,4.796,512,5.209,513,4.159,514,5.209,515,4.159,516,4.796,517,4.024]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[17,0.957,26,0.04,32,1.413,33,1.105,34,1.115,40,2.085,245,3.309,254,2.413,330,3.784,372,3.181,388,3.309,446,2.184,452,3.661,510,9.589,513,3.784,515,5.673,516,7.847,517,7.835,518,4.739,519,4.739,520,8.522,521,8.522,522,4.739,523,4.364,524,4.739]],["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/",[5,0.761,51,0.311,252,4.172,267,4.841,281,4.69,351,1.491,525,3.559]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[525,5.099,526,7.122,527,7.735]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,1.731,5,0.505,17,1.441,26,0.03,32,1.705,33,0.835,34,0.843,45,0.858,51,0.47,56,1.451,78,2.971,119,1.096,120,1.084,126,1.793,171,2.321,192,2.008,218,2.404,252,5.516,267,6.773,331,1.946,392,1.246,397,0.518,480,2.008,495,2.25,525,6.824,528,3.111,529,5.324,530,2.157,531,2.284,532,2.767,533,2.321,534,3.298,535,2.556,536,3.298,537,3.582]],["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/",[40,2.719,267,3.825,538,4.774,539,3.772,540,5.69,541,5.69]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[206,3.449,247,3.401,364,3.977,513,4.45,539,3.401,542,5.573,543,4.45]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[5,0.926,6,1.814,7,2.511,26,0.036,32,1.959,33,0.997,34,1.007,45,0.987,51,0.247,61,1.906,62,1.882,65,0.686,119,1.31,120,1.295,187,2.142,193,1.229,203,1.762,206,4.069,233,3.726,272,1.588,278,2.301,325,2.543,331,3.571,388,2.987,540,9.423,541,8.272,544,6.574,545,2.773,546,6.574,547,3.549,548,3.549,549,6.574,550,3.716]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[32,1.514,45,0.762,119,1.555,214,2.632,245,3.546,269,0.701,392,1.766,551,2.847,552,2.706]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[553,6.124,554,6.124,555,7.051,556,6.124]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[26,0.066,33,1.813,34,1.83,51,0.579,214,4.03,225,2.012,269,1.073,390,2.14,529,4.359,551,6.237]],["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/",[26,0.046,51,0.311,341,2.375,392,1.878,557,4.69,558,4.312,559,4.312,560,4.312]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[557,6.124,559,5.63,560,5.63,561,6.124]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[26,0.034,33,0.919,34,0.928,51,0.495,61,1.757,84,2.44,94,1.53,164,2.101,187,3.09,199,2.95,227,1.141,234,2.187,257,4.774,341,3.344,345,2.599,392,1.371,393,2.555,422,5.071,543,3.148,557,9.56,560,6.07,562,3.425,563,7.469,564,3.631,565,3.631,566,2.753,567,3.631,568,3.943,569,3.271,570,2.043]],["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/",[65,0.866,138,3.947,159,1.518,232,2.263,288,3.095,300,4.312,332,1.325,571,4.972]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[572,6.417,573,7.122,574,7.735]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[26,0.085,32,1.188,33,0.93,34,0.938,45,0.598,47,0.784,48,4.103,49,2.655,51,0.359,65,0.639,84,2.468,120,1.207,130,1.197,136,5.139,138,4.55,180,2.629,182,1.722,203,1.642,216,2.629,225,1.032,269,0.55,275,2.728,288,4.389,299,7.785,351,1.101,362,2.313,499,1.412,500,4.671,571,7.967,572,3.308,575,3.988,576,3.988,577,3.988,578,5.407]],["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/",[26,0.049,32,1.718,45,0.865,152,4.453,233,3.266,341,2.535,559,4.602]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[559,6.176,560,6.176,561,6.719]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[3,1.478,17,0.596,33,0.688,34,0.694,40,1.298,45,1.209,51,0.5,61,1.315,62,1.298,88,2.563,89,2.019,94,1.145,110,2.024,131,1.399,149,1.031,192,1.654,225,0.763,227,1.809,233,4.119,234,1.637,262,1.36,341,2.149,348,1.557,351,0.815,392,1.699,422,2.654,428,1.882,496,2.563,532,2.28,559,5.803,560,6.929,561,7.538,562,2.563,563,4.244,569,2.448,579,4.244,580,2.448,581,2.106,582,2.951,583,2.951,584,3.22,585,2.448,586,2.717,587,1.945,588,2.717,589,2.563,590,2.448,591,2.448,592,3.068,593,2.563,594,2.951]],["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/",[194,5.146,595,5.526,596,4.184,597,5.319,598,6.134]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[55,2.232,189,4.84,599,5.573,600,5.131,601,5.131,602,5.573,603,5.573]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[17,1.141,22,1.378,26,0.048,32,2.409,33,1.318,34,1.33,45,1.213,55,2.265,61,2.519,62,2.487,90,1.717,142,2.048,180,6.22,189,7.021,192,3.169,225,1.462,390,2.224,597,4.514,598,7.443,601,5.205,604,5.653,605,5.653,606,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/",[5,0.938,36,3.91,607,5.786,608,6.134,609,6.134]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[36,4.139,221,4.648,607,6.124,610,7.051]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[17,1.472,26,0.082,33,1.7,34,1.716,36,5.654,37,4.229,56,3.901,203,3.003,221,4.807,392,3.35,584,4.807,607,6.334]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[5,0.871,21,1.345,51,0.356,65,0.991,162,2.685,611,4.774]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[162,3.36,368,5.013,611,5.976]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[19,4.939,21,1.192,22,1.335,26,0.047,33,1.277,34,1.289,40,2.409,51,0.534,58,1.817,65,1.486,90,1.664,95,1.657,162,3.433,166,4.003,310,2.44,338,3.803,611,7.841,612,4.373,613,5.043,614,4.231,615,5.477]],["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/",[26,0.057,137,3.775,616,5.786,617,5.146,618,5.319]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[137,3.396,616,5.204,617,4.629,619,4.183,620,4.784,621,5.517]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[16,2.2,26,0.078,33,1.238,34,1.25,51,0.306,118,3.791,120,2.339,137,5.67,392,1.847,616,9.234,617,5.971,618,4.241,621,4.891,622,4.891,623,5.312,624,3.501,625,3.882,626,5.312,627,5.312,628,3.287,629,3.791,630,5.312,631,5.312]],["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/",[51,0.416,469,3.743,632,4.762,633,7.224]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[332,2.102,469,4.439]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[5,1.238,33,1.485,34,1.499,50,4.447,51,0.367,187,4.401,211,5.532,338,4.231,363,3.835,397,0.921,469,4.555,570,3.3,632,4.198,634,5.284,635,6.369,636,6.369,637,4.779,638,6.369,639,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[32,2.153,45,1.084,65,1.158,611,5.581]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[368,5.552,611,6.618]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[26,0.066,33,1.238,34,1.25,51,0.613,65,1.705,90,1.613,95,2.339,193,2.22,310,3.444,338,3.72,351,1.467,423,1.308,587,3.501,611,7.73,612,4.241,613,4.891,640,5.312,641,3.882]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[3,2.016,32,1.985,45,1,269,0.92,642,4.184]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[269,1.183,642,5.38]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[12,2.976,17,1.286,33,1.485,34,1.499,45,0.956,175,3.739,316,4.92,317,5.284,340,2.33,373,4.447,530,3.835,566,4.447,642,6.322,643,7.635,644,5.909,645,4.274,646,6.369,647,4.545]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[26,0.061,91,1.3,93,4.942,648,6.275]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[162,3.36,390,2.128,648,6.719]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[16,1.73,17,0.843,26,0.036,33,0.974,34,0.983,51,0.454,57,2.981,63,1.472,84,2.585,94,1.621,95,1.264,104,2.058,164,4.201,203,1.72,255,5.942,275,2.857,284,5.354,295,1.925,363,2.515,401,3.886,591,3.465,648,8.329,649,2.916,650,5.605,651,6.453,652,3.465,653,5.942,654,2.803,655,3.846,656,3.134,657,4.177,658,2.483,659,6.542,660,3.06]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[644,4.24,661,4.537,662,7.224,663,4.35]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[663,5.672,664,7.521]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[119,2.971,120,2.937,380,6.927,665,4.353]],["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/",[5,0.761,17,1.09,46,2.331,341,2.375,506,4.172,531,3.444,666,5.4,667,4.972]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[22,1.886,46,3.339,341,3.403]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[26,0.092,33,1.458,34,1.472,46,3.748,51,0.574,61,2.787,62,2.752,90,1.9,114,4.694,115,4.465,506,6.707,550,5.434,667,7.994,668,8.682,669,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/",[32,1.842,45,0.928,469,3.203,670,5.368,671,7.927]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[28,0.706,159,1.821,332,1.59,469,3.357,670,5.627]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[3,2.441,5,0.61,12,2.024,17,1.825,26,0.037,28,0.472,33,1.01,34,1.019,51,0.382,54,1.527,56,1.754,63,1.527,90,1.316,92,2.117,118,3.091,225,1.12,226,2.574,233,3.761,267,2.681,397,0.626,446,1.996,469,4.685,486,2.054,634,3.593,669,2.428,670,9.298,672,1.815,673,3.988,674,4.331,675,3.091,676,4.331,677,4.331,678,4.331]],["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/",[17,1.247,119,1.892,120,1.87,162,2.685,233,3.502,679,5.368]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[162,2.814,164,3.451,680,6.478,681,6.478,682,6.478]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[17,1.57,33,1.813,34,1.83,58,2.579,63,2.741,120,3.039,162,4.364,233,4.407,679,8.725,683,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/",[5,0.761,36,3.17,65,0.866,119,1.653,193,1.551,684,4.69,685,4.972,686,4.972]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[270,1.256,551,2.741,684,4.247,687,4.247,688,4.889,689,2.984,690,2.944,691,3.574,692,4.889]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[17,1.219,33,1.408,34,1.422,58,2.004,63,2.129,65,0.969,119,1.849,180,3.982,203,3.49,262,2.784,295,2.784,357,2.641,402,4.018,486,2.864,684,5.247,685,7.802,693,4.416,694,4.514,695,4.078,696,5.012,697,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/",[5,0.675,65,0.769,91,0.863,138,3.504,193,1.377,269,0.662,288,2.748,293,2.554,300,3.828,698,2.109]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[136,3.74,156,4.84,299,4.623,573,5.131,578,4.84,699,5.131,700,4.45]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[26,0.078,33,1.257,34,1.269,38,3.291,40,3.438,51,0.311,136,5.244,138,7.366,139,3.765,288,5.268,292,4.474,293,2.873,295,2.485,299,6.483,302,4.306,303,3.942,578,6.788,698,3.438,701,4.166,702,6.788]],["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/",[17,1.345,55,2.669,95,2.016,295,3.07,539,4.065]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[55,2.595,703,6.478,704,6.478,705,5.627,706,6.478]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[5,0.931,26,0.056,33,1.54,34,1.555,55,3.612,65,1.06,94,2.565,95,2.728,120,2,187,3.309,228,3.18,269,0.912,317,5.482,348,3.487,707,6.608,708,6.608,709,6.608,710,4.716,711,6.608]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/web-servers/caddy/compile-caddy-from-source/",[198,3.984,357,3.449,712,6.096]],["keywords//docs/web-servers/caddy/compile-caddy-from-source/",[712,6.618,713,4.254]],["toc//docs/web-servers/caddy/compile-caddy-from-source/",[198,5.187,712,7.936]],["deprecated//docs/web-servers/caddy/compile-caddy-from-source/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[26,0.057,51,0.384,91,1.199,93,4.557,714,6.661]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[715,7.122,716,7.735,717,7.735]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[26,0.095,29,3.496,33,1.6,34,1.616,51,0.533,61,3.059,62,3.02,65,1.101,136,4.608,660,2.665,715,9.636,718,2.062,719,3.256]],["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/",[26,0.057,28,0.726,51,0.384,92,3.256,720,4.065]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[28,0.843,47,1.52,720,4.721]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[21,1.495,26,0.099,33,1.6,34,1.616,47,1.349,51,0.396,61,3.059,62,3.02,310,3.059,474,3.59,618,5.482,720,6.387,721,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/",[26,0.057,51,0.384,159,1.872,232,2.791,712,5.146]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[712,6.618,713,4.254]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[26,0.068,33,1.854,34,1.871,51,0.458,58,2.637,193,2.284,203,3.275,340,2.909,712,7.873,722,3.917,723,7.952]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[3,2.186,5,1.018,225,1.869,724,7.224]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[225,1.824,423,1.736,725,7.051,726,6.492]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[35,4.81,58,3.051,225,2.38,695,4.427,727,8.47,728,7.345]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[129,3.694,139,4.651,203,2.743,552,3.549,729,5.146]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[729,5.447,730,7.051,731,7.051,732,7.051]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[17,1.309,26,0.076,29,3.303,33,1.512,34,1.526,84,4.015,94,2.517,269,0.895,275,4.437,332,1.592,338,3.122,339,3.959,647,6.353,660,2.517,729,8.45,733,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/",[26,0.057,28,0.726,92,3.256,417,5.146,690,4.011]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[417,5.005,734,6.478,735,6.478,736,6.478,737,6.478]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[21,1.588,26,0.102,33,1.7,34,1.716,47,1.433,118,5.205,221,4.807,417,7.442,492,5.205,669,4.088,738,6.05]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[32,2.153,45,1.084,739,6.275,740,5.421]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[332,1.278,468,4.321,469,2.699,739,4.524,741,2.63,742,5.209,743,5.209,744,5.209]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[5,1.049,26,0.083,33,1.736,34,1.753,61,3.318,62,3.276,182,3.215,310,3.318,392,2.59,469,3.859,739,8.483,740,5.588,745,6.178]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.87,5,0.871,6,2.62,120,1.87,300,4.935,746,5.69]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[747,7.051,748,7.051,749,7.051,750,7.051]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.963,5,1.254,6,3.774,12,3.031,26,0.055,33,1.512,34,1.526,151,4.015,175,3.807,226,3.855,420,4.867,446,2.989,746,8.196,751,5.972,752,4.276,753,5.972,754,4.015,755,5.381,756,5.634]],["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/",[21,1.175,22,1.316,26,0.046,28,0.589,92,2.639,120,1.634,757,4.052,758,4.48]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[21,1.304,22,1.461,758,4.971,759,5.517,760,5.204,761,4.629]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[21,2.073,26,0.088,33,1.339,34,1.352,51,0.549,95,1.738,192,3.22,201,4.99,203,2.366,273,2.577,439,3.459,757,8.226,758,6.784,762,5.745,763,4.1,764,5.745,765,3.787]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[26,0.057,199,2.585,766,5.786,767,6.661,768,6.661]],["keywords//docs/applications/project-management/install-farmos/",[689,4.721,766,6.719,769,3.424]],["toc//docs/applications/project-management/install-farmos/",[21,1.386,26,0.054,33,1.485,34,1.499,51,0.367,61,2.838,62,2.802,149,2.225,180,4.198,203,2.623,262,2.935,270,1.637,361,4.357,402,3.02,669,3.57,695,3.065,766,9.427,770,6.369,771,3.189,772,4.198]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[17,1.345,162,2.894,383,5.786,480,3.734,710,4.754]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[480,4.801,773,8.566]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[17,1.536,162,4.302,169,4.522,383,6.608,454,6.312,455,4.778,480,6.537,486,3.607,774,7.005,775,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/",[17,1.345,65,1.068,776,2.38,777,2.824,778,5.319]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[779,6.478,780,6.478,781,6.478,782,6.478,783,6.478]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[26,0.086,28,0.707,33,1.512,34,1.526,51,0.374,62,2.853,65,1.04,151,4.015,203,2.671,333,4.741,402,3.076,420,4.867,498,4.015,695,3.122,777,2.75,778,5.179,784,3.597,785,6.486,786,2.442,787,5.972]],["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/",[26,0.061,28,0.787,92,3.531,788,6.275]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[690,4.658,788,6.719,789,5.4]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.046,5,0.626,20,2.517,26,0.084,32,1.323,33,1.035,34,1.045,45,0.666,51,0.39,61,1.979,62,1.953,65,0.712,94,1.723,142,1.609,192,2.489,247,2.71,269,0.934,272,1.648,305,2.261,310,3.014,333,3.246,335,2.98,340,1.624,361,3.037,566,3.1,642,2.789,697,1.664,777,1.883,786,1.672,788,9.02,790,4.089,791,4.44,792,4.44,793,3.246]],["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/",[5,0.812,226,3.426,332,1.414,348,3.042,393,3.735,794,4.602,795,4.453]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[665,2.906,794,5.173,796,5.965,797,6.478,798,6.478]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[26,0.066,31,4.682,33,1.813,34,1.83,51,0.448,99,6.209,348,4.104,698,3.421,794,8.885,799,2.25,800,3.801]],["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/",[26,0.043,48,3.348,49,2.166,65,0.814,119,1.555,269,0.701,471,4.055,472,4.214,801,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[176,5.85,697,2.642,802,7.051,803,7.051]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[17,1.359,26,0.057,33,1.57,34,1.585,48,4.439,49,2.872,51,0.526,95,2.038,120,2.038,269,0.93,392,2.342,471,7.292,472,7.576,786,2.536,804,6.735,805,4.11,806,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/",[129,4.376,175,4.632,617,6.096]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[617,6.618,620,6.84]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[3,2.418,17,1.123,26,0.068,33,1.297,34,1.309,84,3.443,120,1.683,129,5.187,275,3.806,278,2.993,312,4.175,529,3.118,543,4.442,617,7.898,618,8.646,807,9.353,808,5.564,809,3.971]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[26,0.049,28,0.628,92,2.817,392,2.005,697,2.16,810,5.006,811,5.307]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[55,2.595,190,5.965,810,5.627,811,5.965,812,3.328]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[17,1.286,22,1.553,26,0.075,32,1.898,33,1.485,34,1.499,45,0.956,51,0.367,61,2.838,62,2.802,63,2.245,247,3.887,310,2.838,487,3.609,697,2.386,810,9.892,813,5.864,814,4.357]],["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/",[26,0.043,28,0.554,65,0.814,91,0.914,231,2.543,815,4.677,816,4.677,817,4.677,818,3.474]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[225,1.55,817,5.517,819,5.992,820,4.183,821,5.992,822,5.992]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[5,0.726,26,0.044,33,1.202,34,1.213,51,0.297,56,2.088,65,1.76,129,2.859,177,3.399,231,4.484,252,5.843,392,2.63,592,3.238,752,4.985,815,8.247,816,8.247,820,3.6,823,3.769,824,4.277,825,4.478,826,3.983,827,5.156]],["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/",[26,0.061,28,0.787,65,1.158,828,6.652]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[28,0.769,829,7.051,830,7.051,831,7.051]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[15,6.167,26,0.077,33,1.54,34,1.555,61,2.944,62,2.907,310,2.944,828,6.085,832,9.016,833,9.016,834,9.016,835,9.016,836,9.016,837,6.608]],["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/",[26,0.053,28,0.674,51,0.356,92,3.021,191,3.262,341,2.719]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[838,7.051,839,7.051,840,4.428,841,6.124]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[5,0.837,17,1.199,26,0.051,51,0.342,56,2.405,119,1.818,182,2.564,191,3.134,203,3.448,233,3.366,234,5.377,262,2.737,341,2.613,428,6.715,474,3.106,579,5.159,580,4.927,841,5.159,842,5.939,843,5.159,844,5.939]],["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/",[17,1.247,28,0.674,55,2.476,192,3.464,390,1.701,845,5.69]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[55,3.099,705,6.719,846,7.735]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[12,3.088,17,1.82,26,0.056,33,1.54,34,1.555,55,4.111,126,3.309,152,5.105,192,6.179,390,2.481,705,5.74,847,4.83,848,4.83,849,6.608]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[850,0.477]],["title//docs/applications/containers/how-to-use-dockerfiles/",[5,1.224,851,6.354]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[162,3.36,164,4.121,851,5.654]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[17,1.722,54,3.755,162,3.705,198,4.307,480,4.781,851,8.491]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[21,1.345,26,0.053,28,0.674,51,0.356,92,3.021,852,4.935]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[21,1.684,853,7.122,854,7.735]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[16,2.959,21,2.477,22,1.742,26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,329,4.988,392,2.485,587,4.71,852,8.525]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[26,0.057,28,0.726,51,0.384,92,3.256,855,5.146]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[855,5.976,856,7.735,857,7.735]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[17,1.503,21,1.621,26,0.083,33,1.736,34,1.753,51,0.563,332,1.827,351,2.056,487,4.221,503,5.753,733,4.319,855,7.545]],["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/",[28,0.674,91,1.112,104,3.045,129,3.427,570,3.203,858,2.828]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[28,0.653,91,1.078,859,4.629,860,4.629,861,4.496,862,4.276]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[26,0.065,51,0.571,94,2.953,104,5.746,119,2.329,142,2.757,351,2.101,357,3.326,858,4.532]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[5,0.871,51,0.356,119,1.892,120,1.87,525,4.074,665,2.772]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[525,5.099,526,7.122,863,7.735]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[3,1.927,6,2.7,26,0.054,32,1.898,33,1.485,34,1.499,45,0.956,171,5.697,175,3.739,228,4.231,525,7.507,665,4.515,864,6.369,865,5.532,866,4.92]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[110,3.268,491,5.201,867,5.767]],["keywords//docs/security/getting-started-with-selinux/",[338,3.118,867,4.735,868,6.478,869,6.478,870,6.478]],["toc//docs/security/getting-started-with-selinux/",[26,0.068,33,1.854,34,1.871,61,3.543,62,3.498,257,4.994,867,8.669,871,7.952,872,7.952]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,1.309,63,2.348,119,2.039,162,2.894,164,3.549]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[162,3.063,164,3.757,851,5.154,873,7.051]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[6,3.531,63,2.936,162,4.559,164,6.121,197,5.814,218,5.589,592,5.231]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[26,0.057,51,0.384,392,2.317,393,4.317,874,5.786]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[874,5.204,875,5.992,876,5.992,877,4.496,878,5.992,879,5.992]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[5,1.146,26,0.069,61,3.625,62,3.579,129,4.512,319,4.776,874,10.388,880,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/",[26,0.053,63,2.178,162,2.685,164,3.292,464,5.127,480,3.464]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[162,3.063,164,3.757,851,5.154,881,7.051]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[26,0.061,33,1.665,34,1.681,47,1.404,84,4.422,110,2.959,162,4.638,340,2.613,464,5.927,480,5.326,538,5.52,661,4.487,882,7.145,883,6.579]],["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/",[26,0.061,28,0.787,845,6.652,884,6.652]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[885,7.735,886,7.735,887,7.735]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[26,0.056,33,1.54,34,1.555,61,2.944,62,2.907,118,4.716,120,2,203,2.722,246,8.234,300,5.276,401,3.979,884,9.449,888,5.74,889,6.608,890,5.105]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[850,0.477]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[26,0.067,28,0.86,867,5.767]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[4,2.014,867,4.735,891,5.965,892,6.478,893,5.374]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[26,0.074,33,2.038,34,2.057,61,3.895,62,3.845,401,5.264,867,6.39,891,8.049]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[162,3.776,175,5.102]],["keywords//docs/applications/containers/introduction-to-docker/",[162,3.36,164,4.121,851,5.654]],["toc//docs/applications/containers/introduction-to-docker/",[61,3.895,62,3.845,162,5.102,480,4.9,679,7.593,851,6.39]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[26,0.053,91,1.112,227,1.788,293,3.292,672,2.589,894,5.368]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[894,6.124,895,7.051,896,4.497,897,6.124]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[3,1.474,17,0.983,26,0.041,33,1.135,34,1.146,51,0.418,61,2.17,62,2.143,130,1.463,149,1.701,193,1.399,203,2.986,216,3.211,225,1.26,227,1.409,295,2.244,331,2.646,332,1.195,340,1.781,351,2.392,360,4.485,362,2.825,517,3.763,632,3.211,637,3.655,660,1.89,672,2.041,894,9.676,898,3.56,899,4.871]],["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/",[28,0.495,32,1.353,45,0.681,92,2.219,159,1.276,194,3.507,232,1.902,233,2.573,341,1.997,883,4.18,900,3.507]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[22,1.461,900,4.629,901,5.992,902,4.183,903,4.496,904,3.025]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[3,2.107,33,1.076,34,1.086,36,2.709,45,1.045,51,0.266,84,2.856,90,1.402,142,1.672,216,3.042,233,5.294,247,4.25,269,0.637,275,3.157,286,2.459,338,2.221,340,1.688,341,3.689,362,2.676,579,4.009,658,2.743,669,3.904,697,3.142,771,3.487,786,1.738,900,7.217,905,2.943,906,2.991,907,2.709]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[257,4.956,455,4.956,867,5.767]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[867,7.015]],["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/",[5,0.938,168,3.422,169,3.959,351,1.839,486,3.159]],["keywords//docs/quick-answers/linux/how-to-use-git/",[4,2.192,908,7.051,909,5.85,910,7.051]],["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/",[5,1.224,911,6.715]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[4,2.192,911,5.447,912,5.85,913,5.032]],["toc//docs/quick-answers/linux/how-to-use-wget/",[3,2.858,5,1.331,94,3.666,911,7.297,914,9.446]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[5,1.018,119,2.211,206,4.471,373,5.044]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[206,3.708,254,3.051,284,4.971,915,5.992,916,4.379,917,4.496]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[44,4.587,84,3.556,119,2.914,203,3.921,206,6.421,218,3.856,275,3.93,284,9.725,373,7.243,378,4.99,530,3.459,917,4.311,918,5.745]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[26,0.061,51,0.416,119,2.211,919,6.275]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[919,6.124,920,5.85,921,6.124,922,4.923]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[16,1.652,17,1.546,26,0.088,32,1.188,33,0.93,34,0.938,45,0.598,50,2.784,51,0.541,119,1.905,142,2.256,150,2.915,192,2.235,218,2.676,254,3.17,286,2.124,331,2.166,340,2.277,392,1.387,410,2.846,421,2.543,480,2.235,533,4.034,658,2.37,665,1.788,695,1.919,919,7.515,923,3.988,924,2.992,925,3.672,926,2.846,927,2.341,928,3.988,929,3.184,930,2.784,931,2.728]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[26,0.049,28,0.628,159,1.62,232,2.415,269,0.796,900,4.453,932,5.764]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[22,1.461,900,4.629,902,4.183,904,3.025,933,5.992,934,5.992]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[3,1.632,26,0.067,33,1.257,34,1.269,51,0.45,84,3.338,175,3.166,199,2.093,203,3.218,262,2.485,269,0.744,275,3.689,286,2.873,295,2.485,332,1.323,340,1.973,341,2.372,482,2.596,652,4.474,733,3.128,848,3.942,900,8.263,935,3.849,936,4.966,937,3.765,938,4.966]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[4,2.071,5,0.938,119,2.039,164,3.549,939,4.754]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[162,3.36,939,5.52,940,7.735]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[4,3.19,45,0.992,50,4.614,51,0.381,125,4.83,130,1.984,164,5.467,257,4.15,373,4.614,533,4.283,658,3.928,698,2.907,888,5.74,941,6.608,942,5.276,943,5.74,944,4.716]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[26,0.061,29,3.679,159,2.031,232,3.027]],["keywords//docs/development/java/install-java-on-centos/",[30,5.374,159,2.5,945,6.478,946,5.965]],["toc//docs/development/java/install-java-on-centos/",[26,0.084,27,5.43,29,5.939,33,1.773,34,1.79,192,4.265,276,4.466,947,7.005,948,6.075,949,7.005]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[26,0.061,29,3.679,91,1.3,293,3.849]],["keywords//docs/development/java/install-java-on-debian/",[30,5.85,91,1.269,292,5.85,946,6.492]],["toc//docs/development/java/install-java-on-debian/",[26,0.084,27,5.43,29,5.939,33,1.773,34,1.79,192,4.265,276,4.466,947,7.005,948,6.075,949,7.005]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[26,0.061,28,0.787,29,3.679,92,3.531]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[27,4.623,28,0.706,29,3.299,30,5.374,950,4.01]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[26,0.071,27,5.944,29,4.241,33,1.941,34,1.96,45,1.25,192,4.668,292,6.909,847,6.087,950,5.155]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[26,0.057,28,0.726,47,1.309,92,3.256,951,5.786]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[47,1.177,265,4.971,903,4.496,916,4.379,951,5.204,952,5.992]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[5,0.897,17,1.286,21,1.386,26,0.086,28,0.694,47,1.727,51,0.58,110,2.638,130,1.913,142,2.308,325,3.786,333,4.655,786,2.398,951,8.743,953,6.369,954,6.369]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[63,2.781,119,2.415,480,4.423]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[19,4.204,119,2.415,340,2.886]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[4,2.246,164,3.849,698,3.178,939,5.156]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[939,5.032,956,7.051,957,4.648,958,5.63]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[336,5.231,665,3.735,698,4.616,926,5.944,937,5.814,939,7.49,959,5.814,960,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/",[119,2.211,961,4.471,962,3.849,963,3.262]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[119,2.415,254,4.018,917,5.921]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[4,2.405,480,4.336,955,5.654]],["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,2.016,4,2.071,5,0.938,286,3.549,964,4.998]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[376,4.732,393,4.57,964,5.291,965,5.63]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,2.645,5,1.231,216,5.763,351,2.414,964,8.116,966,7.593,967,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/",[26,0.053,65,0.991,159,1.737,232,2.589,916,4.517,968,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[969,7.122,970,7.122,971,7.735]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,182,3.085,203,2.943,388,4.988,421,4.557,439,4.302,669,4.005,916,5.222,968,8.858,972,5.705,973,6.579]],["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/",[26,0.053,28,0.674,65,0.991,92,3.021,916,4.517,968,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[969,7.122,970,7.122,974,7.735]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,182,3.085,203,2.943,388,4.988,421,4.557,439,4.302,669,4.005,916,5.222,968,8.858,972,5.705,973,6.579]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[26,0.061,159,2.031,232,3.027,975,4.848]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[159,1.821,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[17,1.359,22,1.642,26,0.078,33,1.57,34,1.585,51,0.388,61,3.001,62,2.962,94,2.614,149,2.353,270,1.73,388,4.702,392,2.342,416,4.11,669,3.775,975,7.457]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[4,2.246,6,3.063,7,4.24,755,5.993]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[376,3.74,393,3.612,492,3.977,755,4.623,756,4.84,965,4.45,977,5.573]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[4,1.945,6,3.681,54,2.205,376,5.827,619,4.368,656,4.694,661,3.929,824,5.19,978,5.76,979,5.76,980,6.256,981,5.19,982,4.694,983,6.256,984,6.256,985,6.256,986,5.19,987,6.256,988,5.19,989,5.76,990,5.434,991,6.256]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[5,1.112,6,3.345,913,5.631]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[4,2.192,912,5.85,913,5.032,992,4.497]],["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/",[5,1.112,6,3.345,993,6.3]],["keywords//docs/quick-answers/linux/how-to-use-head/",[3,1.96,4,2.014,912,5.374,993,5.173,994,6.478]],["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/",[5,1.112,6,3.345,995,6.3]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[3,1.96,4,2.014,912,5.374,995,5.173,996,6.478]],["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/",[5,0.812,83,3.426,119,1.764,652,4.781,660,2.237,997,5.006,998,4.024]],["keywords//docs/security/advanced-ssh-server-security/",[4,1.619,28,0.568,65,0.835,159,1.464,332,1.278,665,2.336,796,4.796,999,4.796]],["toc//docs/security/advanced-ssh-server-security/",[5,1.191,16,1.937,33,1.09,34,1.101,35,2.445,129,2.593,130,1.404,149,2.953,242,3.138,262,3.896,339,2.854,486,2.217,530,2.816,566,3.265,580,3.88,660,1.815,665,2.097,771,2.341,957,3.083,963,2.111,1000,4.676,1001,3.338,1002,3.338,1003,4.306,1004,5.835,1005,4.062,1006,4.676,1007,4.306,1008,4.306,1009,3.338,1010,4.306,1011,4.062,1012,4.306,1013,4.676,1014,4.676,1015,4.676]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,1016,5.146,1017,6.661]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[28,0.568,690,3.136,903,3.908,1016,4.024,1018,4.796,1019,4.796,1020,4.796,1021,5.209]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[3,1.419,17,1.582,22,1.143,26,0.076,33,0.655,34,0.661,46,2.025,51,0.488,55,1.126,58,1.556,61,1.252,62,1.236,65,0.968,90,2.73,130,1.408,142,1.018,149,2.463,169,1.67,171,1.821,192,3.384,194,3.623,199,1.09,221,1.852,310,2.69,338,2.257,340,1.028,351,1.295,416,2.862,455,2.946,637,3.519,649,1.962,698,2.063,738,2.331,1016,8.01,1022,2.587,1023,2.587,1024,2.44,1025,2.587,1026,3.745,1027,1.443]],["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/",[159,1.518,225,1.397,232,2.263,1028,5.717,1029,4.972,1030,7.202]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[159,1.684,269,0.827,1028,4.379,1029,5.517,1031,5.992,1032,5.992]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[5,0.986,21,1.524,26,0.06,33,1.632,34,1.648,51,0.403,130,2.103,142,3.397,199,2.718,269,0.967,1028,6.853,1030,10.395,1033,5.41]],["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/",[5,0.761,104,2.66,131,2.56,132,4.052,159,1.518,927,3.17,1034,2.276,1035,4.972]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1036,6.176,1037,7.735,1038,7.735]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[26,0.083,51,0.559,104,4.782,927,5.698]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1039,3.82]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[26,0.061,119,2.211,129,4.006,131,3.425]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[920,5.85,921,6.124,922,4.923,1040,6.492]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[26,0.07,51,0.471,94,2.23,119,3.175,120,1.738,129,3.186,130,1.725,131,2.724,142,2.963,254,2.925,364,4.1,480,3.22,653,5.29,655,5.29,660,2.23,922,4.011,926,4.1,927,4.8,962,3.061,1041,5.745,1042,5.745,1043,3.93]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1044,3.827,1045,6.853,1046,5.767]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1045,6.124,1046,5.154,1047,5.85,1048,5.291]],["toc//docs/platform/upgrade-to-hourly-billing/",[550,8.67,1044,4.841,1049,3.777]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[119,2.661,917,6.522]],["keywords//docs/platform/disk-images/resizing-a-linode/",[917,6.428,1044,4.154]],["toc//docs/platform/disk-images/resizing-a-linode/",[119,3.144,917,7.708]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,293,3.549,1050,5.786]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[28,0.843,1050,6.719,1051,7.735]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[26,0.063,33,1.736,34,1.753,51,0.429,149,2.602,228,3.584,348,3.93,351,2.056,501,6.178,660,2.89,800,3.64,1050,10.047]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[26,0.061,159,2.031,232,3.027,719,3.425]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[22,1.461,28,0.653,719,2.841,904,3.025,1052,4.099,1053,5.517]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[17,1.263,22,1.525,26,0.053,33,1.458,34,1.472,40,2.752,51,0.36,110,2.591,120,1.893,149,3.033,203,2.576,204,2.863,295,2.883,319,3.672,328,5.76,403,4.465,592,3.929,719,5.365,1054,4.995]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[17,1.163,28,0.628,65,0.924,92,2.817,1055,5.307,1056,5.307,1057,5.764]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[28,0.843,65,1.24,1058,7.735]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[17,1.199,26,0.051,33,1.384,34,1.398,45,0.891,51,0.342,57,4.239,65,1.847,87,3.576,182,2.564,187,2.974,351,1.64,530,3.576,673,5.468,823,4.341,1055,9.695,1059,5.845,1060,5.939]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[26,0.061,159,2.031,232,3.027,1061,4.848]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[159,1.982,1061,4.732,1062,6.492,1063,7.051]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[12,2.129,16,1.887,17,0.919,21,0.992,22,1.111,26,0.079,33,1.062,34,1.072,37,2.642,45,1.035,51,0.574,61,2.03,62,2.004,65,0.73,94,1.768,142,1.651,149,2.409,163,3.519,232,1.909,269,0.629,270,1.171,286,2.427,332,1.118,416,4.209,552,2.427,584,3.003,639,2.708,697,1.707,905,2.905,1061,6.69,1064,4.194]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[26,0.061,28,0.787,92,3.531,1061,4.848]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[28,0.769,1061,4.732,1062,6.492,1065,7.051]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[12,2.215,16,1.963,17,0.957,21,1.032,22,1.155,26,0.06,33,1.105,34,1.115,37,2.749,45,1.066,51,0.584,61,2.112,62,2.085,65,0.76,94,1.839,142,1.717,149,2.482,163,3.661,269,0.654,270,1.218,286,2.525,332,1.163,416,4.336,552,2.525,584,3.124,639,2.817,697,1.776,905,3.023,1061,6.806,1064,4.364]],["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/",[5,0.675,28,0.523,51,0.276,59,2.78,91,0.863,224,2.78,772,3.16,777,2.033,1066,1.805,1067,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[28,0.706,91,1.166,1066,2.439,1067,5.374,1068,4.735]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[3,1.657,22,1.335,26,0.047,33,1.277,34,1.289,51,0.316,65,0.878,90,1.664,203,2.256,224,3.176,332,1.939,340,2.003,660,2.126,771,2.742,776,1.957,800,2.677,963,4.186,1066,4.222,1067,4.544,1069,4.373,1070,5.043,1071,4.544,1072,5.477,1073,5.477]],["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/",[22,1.507,26,0.053,46,2.668,159,1.737,232,2.589,1074,3.357]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[46,3.044,902,4.923,1075,5.63,1076,4.303]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[17,1.35,22,2.336,26,0.057,33,0.758,34,0.765,38,1.984,46,3.327,51,0.187,130,0.976,149,1.136,159,0.914,182,1.404,203,2.178,218,4.488,228,1.565,237,3.428,278,1.749,295,2.437,332,1.891,348,1.716,393,2.107,401,1.958,446,3.081,530,4.027,564,2.993,660,2.99,671,2.993,722,1.602,1077,5.21,1078,5.289,1079,5.289,1080,2.439,1081,6.315,1082,2.224,1083,3.251]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[17,1.458,45,1.084,719,3.425,1084,7.224]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[341,3.102,719,3.343,904,3.56,1085,7.051]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[3,2.533,17,1.199,32,1.77,33,1.384,34,1.398,45,0.891,51,0.559,61,2.646,62,2.613,90,1.804,110,2.46,149,2.075,203,2.446,225,1.536,262,2.737,348,3.134,672,2.488,719,3.97,733,3.444,771,2.974,1086,4.693,1087,4.927]],["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/",[5,0.607,47,0.847,91,0.776,293,2.297,337,2,551,2.416,570,3.426,697,1.615,959,3.01,1088,3.331,1089,3.151]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[47,1.177,551,3.358,697,2.245,840,3.763,1088,4.629,1090,5.204]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[3,1.632,17,1.089,26,0.078,33,1.257,34,1.269,47,1.536,51,0.616,61,2.403,62,2.372,90,1.638,129,2.991,137,3.056,270,1.386,286,2.873,337,2.503,446,2.485,551,3.023,669,3.023,1088,7.785,1091,4.684,1092,4.047,1093,5.393,1094,5.393]],["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/",[119,2.661,1095,6.354]],["keywords//docs/platform/disk-images/clone-your-linode/",[955,5.654,1095,7.317]],["toc//docs/platform/disk-images/clone-your-linode/",[119,3.144,1095,7.509]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[26,0.061,159,2.031,232,3.027,269,0.997]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[159,2.174,269,1.068,902,5.4]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[26,0.077,33,1.22,34,1.231,51,0.572,61,2.332,62,2.302,193,1.503,203,2.155,225,1.354,235,2.428,269,1.055,332,1.876,335,3.512,390,1.44,531,4.875,552,2.788,566,3.653,695,2.518,697,2.864,1096,4.178,1097,7.039,1098,5.588,1099,4.178,1100,4.818]],["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/",[5,0.675,159,1.348,226,2.85,232,2.009,241,3.107,242,3.218,348,2.53,665,2.15,795,3.704,963,2.165]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[665,3.469,1101,7.122,1102,7.735]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[26,0.06,33,1.632,34,1.648,45,1.051,51,0.403,61,3.12,62,3.08,95,2.119,226,4.162,262,4.32,348,4.948,771,3.506,795,5.41,1103,7.003,1104,6.448,1105,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/",[5,0.607,28,0.47,91,0.776,92,2.107,226,2.562,241,2.794,242,2.893,293,2.297,348,2.275,665,1.934,795,3.331,963,1.946]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[28,0.706,91,1.166,665,2.906,1101,5.965,1106,6.478]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[26,0.06,33,1.632,34,1.648,45,1.051,51,0.403,61,3.12,62,3.08,226,4.162,262,4.32,348,5.578,771,3.506,772,4.616,795,5.41,1104,6.448,1105,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/",[51,0.356,65,0.991,335,4.148,660,2.398,741,3.12,1107,3.542]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[469,3.654,672,2.954,741,3.56,1107,4.042]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[1,5.331,32,2.174,33,1.7,34,1.716,45,1.095,65,1.169,90,2.215,340,2.667,421,4.651,644,4.281,660,2.83,741,3.682,800,3.564,1107,4.18,1108,4.391,1109,5.472]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[4,1.921,5,0.871,247,3.772,251,4.935,254,3.147,641,4.517]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[91,1.269,251,5.63,893,5.85,1110,7.051]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[5,0.897,17,1.286,26,0.075,33,1.485,34,1.499,51,0.367,91,1.582,119,1.949,142,2.308,247,6.143,251,5.085,254,4.476,293,3.393,332,1.563,351,1.759,424,5.284,927,3.739,1111,4.779]],["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/",[40,3.29,119,1.555,267,3.144,269,0.701,315,2.847,1112,5.079,1113,4.412,1114,4.412]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[140,4.191,600,6.492,1114,6.124,1115,6.492]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[3,1.365,6,1.912,17,1.541,32,0.799,33,0.625,34,0.631,45,0.402,90,0.814,110,1.868,119,0.821,120,0.811,126,2.258,180,1.767,218,3.027,227,1.305,233,3.879,262,1.236,272,0.995,341,5.181,363,1.615,392,1.569,480,3.836,534,4.153,592,2.832,695,1.29,906,2.923,1111,3.384,1114,9.579,1115,8.844,1116,2.681,1117,2.224,1118,2.224,1119,2.681,1120,2.469,1121,4.51]],["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/",[26,0.061,28,0.787,92,3.531,551,4.049]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[553,6.124,554,6.124,556,6.124,1122,6.492]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[3,2.365,16,3.237,17,1.089,26,0.067,33,1.257,34,1.269,45,0.809,47,1.06,51,0.581,78,4.474,259,3.849,269,0.744,270,1.386,551,5.995,565,4.966,566,6.416,710,3.849,1122,8.462,1123,5.393]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[5,0.938,262,3.07,348,3.516,665,2.988,935,4.754]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[348,2.749,665,2.336,794,4.159,935,3.717,1124,5.209,1125,5.209,1126,4.796,1127,4.796]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[16,2.234,33,1.257,34,1.269,119,1.651,126,2.7,203,2.221,262,5.139,332,1.917,348,2.846,475,4.684,595,4.474,665,2.419,771,3.913,794,4.306,935,6.559,1043,3.689,1089,3.942,1105,3.495,1126,4.966,1128,5.393,1129,7.815,1130,4.684,1131,5.393]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[4,2.246,26,0.061,119,2.211,1132,6.275]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[129,3.323,920,4.971,1132,5.204,1133,5.992,1134,5.992,1135,5.992]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[4,2.377,26,0.077,33,1.22,34,1.231,51,0.572,61,2.332,62,2.302,65,0.839,94,2.031,95,1.583,104,2.578,119,1.602,125,3.825,142,1.896,254,2.664,257,3.286,332,1.284,351,1.445,480,2.933,533,3.391,654,3.512,658,3.11,930,3.653,1132,7.846,1136,3.825,1137,4.178,1138,5.233]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[26,0.067,159,2.218,1139,4.816]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1139,4.303,1140,7.051,1141,7.051,1142,7.051]],["toc//docs/websites/cms/install-cpanel-on-centos/",[5,1.321,26,0.06,51,0.54,58,2.323,104,3.45,119,2.143,120,2.119,499,3.743,718,2.816,805,4.274,1139,5.722,1143,6.448]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[228,4.184,660,3.373]],["keywords//docs/networking/remote-access/",[664,5.173,1144,6.478,1145,6.478,1146,6.478,1147,6.478]],["toc//docs/networking/remote-access/",[5,1.126,45,0.835,48,5.268,51,0.321,263,4.067,499,2.83,539,3.395,643,4.832,644,6.001,660,3.102,663,5.632,665,2.495,672,3.349,694,4.258,926,3.971,937,5.58,961,3.443,1105,3.606,1148,4.442]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[157,1.85,159,1.62,697,2.16,786,2.17,806,2.96,1149,4.024,1150,3.62]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[157,1.923,159,1.684,1150,3.763,1151,4.496,1152,4.784,1153,4.629]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[17,1.413,33,1.632,34,1.648,142,2.537,203,2.884,395,3.767,697,2.624,786,4.251,806,3.597,962,4.995,1154,6.546,1155,6.448,1156,6.448]],["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/",[28,0.589,91,0.972,570,2.798,697,2.023,786,2.033,806,2.774,1149,3.77,1150,3.391]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[28,0.653,91,1.078,1150,3.763,1151,4.496,1152,4.784,1153,4.629]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[17,1.413,33,1.632,34,1.648,142,2.537,203,2.884,395,3.767,697,2.624,786,4.251,806,3.597,962,4.995,1154,6.546,1155,6.448,1156,6.448]],["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/",[47,1.214,63,2.178,195,4.774,196,4.517,333,4.517,697,2.316]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[47,1.52,333,5.654,697,2.898]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[17,1.072,33,1.238,34,1.25,47,1.044,51,0.306,65,0.852,90,1.613,129,2.946,262,2.448,332,1.303,335,3.565,337,4.228,340,1.943,403,3.791,421,5.81,482,2.556,645,3.565,722,2.617,1001,3.791,1002,3.791,1157,4.104,1158,5.312,1159,5.312,1160,5.312,1161,5.312,1162,5.312,1163,5.312,1164,5.312,1165,5.312,1166,5.312]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[104,3.282,129,3.694,159,1.872,232,2.791,858,3.049]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[159,1.821,859,5.005,860,5.005,861,4.861,862,4.623]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[26,0.065,51,0.571,94,2.953,104,5.746,119,2.329,142,2.757,351,2.101,357,3.326,858,4.532]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[225,1.869,305,3.679,531,4.607,1098,5.28]],["keywords//docs/websites/host-a-website-with-high-availability/",[509,5.291,570,3.654,713,3.502,1148,5.63]],["toc//docs/websites/host-a-website-with-high-availability/",[16,1.615,21,0.849,22,0.951,26,0.064,33,0.909,34,0.918,51,0.568,65,0.625,90,2.293,120,1.18,203,3.108,233,2.21,269,0.844,332,0.957,335,2.617,338,3.633,339,4.606,341,1.715,364,2.783,498,2.413,499,1.381,539,2.38,551,2.186,566,2.722,644,2.289,654,2.617,1086,3.429,1097,7.87,1099,6.027,1100,5.632,1148,3.113,1167,3.899,1168,6.117,1169,2.617]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[175,4.632,531,5.032,1098,5.767]],["keywords//docs/websites/introduction-to-high-availability/",[225,1.824,305,3.59,509,5.291,1148,5.63]],["toc//docs/websites/introduction-to-high-availability/",[3,1.963,22,1.581,65,1.04,193,1.863,227,1.877,329,4.529,351,1.791,446,2.989,507,4.867,513,5.179,531,6.976,753,5.972,898,4.741,1098,7.995,1148,7.108]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[26,0.061,28,0.787,92,3.531,435,5.28]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[28,0.769,92,3.446,432,6.124,435,5.154]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[4,2.485,26,0.047,33,1.297,34,1.309,51,0.321,65,1.281,98,6.836,110,2.304,119,1.703,170,4.635,174,4.07,182,3.45,332,1.365,363,4.812,435,7.914,639,4.75,641,4.067,658,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/",[26,0.061,28,0.787,46,3.119,92,3.531]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[46,2.797,903,4.861,1075,5.173,1076,3.954,1170,4.348]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[17,1.888,22,1.948,26,0.068,28,0.606,33,1.297,34,1.309,46,4.867,51,0.321,92,2.719,149,1.944,228,2.678,237,3.606,278,2.993,332,1.961,415,3.806,660,3.102,1074,3.023,1077,3.189,1081,3.667,1171,4.175]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,719,3.159,1172,6.134]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[22,1.461,28,0.653,719,2.841,904,3.025,1052,4.099,1053,5.517]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[17,1.334,22,1.611,26,0.056,33,1.54,34,1.555,40,2.907,51,0.381,110,2.737,120,2,149,2.308,203,2.722,204,3.024,295,3.045,319,3.879,592,4.15,719,5.471,1054,5.276]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[5,0.761,28,0.589,65,0.866,92,2.639,193,1.551,1172,4.972,1173,3.295,1174,5.4]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[713,3.841,1173,4.721,1175,7.122]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[6,2.186,7,3.027,12,2.41,17,1.041,26,0.044,33,1.202,34,1.213,51,0.297,56,2.088,171,3.342,195,3.983,196,3.769,202,3.68,225,2.552,273,2.313,340,1.886,390,2.715,392,1.793,421,3.288,538,3.983,669,4.239,978,4.747,1173,4.616,1176,6.569,1177,4.478,1178,1.991,1179,5.156]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[28,0.674,91,1.112,130,1.856,293,3.292,332,1.516,689,3.772]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[130,1.673,269,0.769,270,1.432,689,3.401,690,3.356,1180,3.674,1181,5.131]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[3,2.162,17,1.442,19,3.806,33,1.665,34,1.681,94,2.773,107,5.927,130,2.146,204,3.27,257,4.487,332,1.753,351,1.973,552,5.062,593,6.206,656,5.361,1044,3.465]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,269,0.92,1182,3.734]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1183,7.051,1184,7.051,1185,7.051,1186,7.051]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[5,1.231,26,0.074,33,2.038,34,2.057,90,2.655,269,1.207,1182,6.063]],["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.579,21,1.106,26,0.043,28,0.554,47,0.998,92,2.482,270,1.305,288,2.911,1187,2.586]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[47,1.386,270,1.812,903,5.291,1187,3.59]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[16,2.591,21,1.362,22,1.525,26,0.074,33,1.458,34,1.472,47,1.959,51,0.36,63,2.205,65,1.392,90,1.9,193,1.797,225,1.618,270,1.607,288,3.586,390,1.721,800,4.243,1178,2.415,1187,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/",[26,0.057,28,0.726,92,3.256,288,3.818,769,2.949]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[903,4.861,1188,6.478,1189,6.478,1190,6.478,1191,6.478]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[5,0.837,16,2.46,17,1.199,21,2.111,22,1.448,26,0.083,33,1.384,34,1.398,51,0.482,90,1.804,225,1.536,269,1.156,270,1.526,288,3.404,390,1.634,696,4.927,769,2.629,800,4.092,1192,5.939,1193,5.939]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[28,0.787,92,3.531,1044,3.504,1194,3.559]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[28,0.843,92,3.781,1044,3.751]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[26,0.054,28,1.097,31,3.835,32,1.898,58,2.112,92,3.113,104,3.138,119,1.949,130,1.913,142,2.308,531,4.062,592,4,784,3.532,988,5.284,1027,3.271,1044,4.882,1194,4.331,1195,5.284]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[26,0.053,28,0.674,65,0.991,91,1.112,191,3.262,293,3.292]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[191,3.162,896,3.821,1196,5.992,1197,5.992,1198,5.992,1199,5.517]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[16,2.075,26,0.083,28,0.546,32,1.493,33,1.168,34,1.179,45,0.752,51,0.561,54,1.766,91,0.901,119,2.696,130,1.504,131,2.375,142,1.815,191,5.134,205,3.1,226,2.977,234,2.778,332,1.229,347,3.1,351,1.383,424,4.156,428,3.195,907,2.94,1086,4.15,1200,4.612]],["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/",[26,0.057,51,0.384,159,1.872,191,3.516,232,2.791]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[159,1.982,191,3.721,902,4.923,1199,6.492]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[5,0.706,16,2.075,26,0.075,32,1.493,33,1.168,34,1.179,45,0.752,51,0.507,54,1.766,119,2.696,131,2.375,142,1.815,191,5.478,204,2.292,205,3.1,234,2.778,263,3.661,332,1.229,347,3.1,348,2.644,351,1.383,424,4.156,428,3.195,907,2.94,963,2.262,1086,4.15,1200,4.612]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[26,0.053,28,0.674,91,1.112,293,3.292,1201,3.673,1202,5.127]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[28,0.653,227,1.734,896,3.821,1201,3.561,1203,5.992,1204,5.992]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[17,1.179,26,0.07,33,1.361,34,1.374,51,0.337,57,4.168,61,2.602,62,2.569,137,3.31,142,2.116,149,2.04,193,2.376,198,2.949,269,0.806,331,4.495,357,2.553,358,4.663,660,2.267,1082,3.995,1201,6.557,1202,4.845]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[5,0.715,28,0.554,47,0.998,51,0.293,199,1.971,474,2.656,784,2.817,1205,4.677,1206,2.706]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[47,1.177,1207,3.608,1208,5.992,1209,5.992,1210,5.992,1211,4.021]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[17,1.472,26,0.098,33,1.7,34,1.716,47,1.433,51,0.555,110,3.021,199,2.83,474,3.813,1205,8.869,1206,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/",[26,0.067,119,2.415,1212,6.853]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1212,7.44,1213,8.566]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[4,2.652,26,0.073,119,2.611,142,3.091,175,5.007,258,7.409,1212,10.09]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,0.812,26,0.049,28,0.628,492,4.113,551,3.231,784,3.196,1214,5.006]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[28,0.568,137,2.952,269,0.719,551,2.92,1215,5.209,1216,5.209,1217,5.209,1218,4.024]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[6,2.476,15,3.995,22,1.424,26,0.094,32,1.741,45,0.877,54,2.059,118,4.168,130,2.885,137,3.31,151,3.615,323,5.378,492,5.905,551,4.638,718,1.754,848,4.269,877,4.382,1214,7.186,1218,4.512]],["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/",[47,1.133,214,2.987,305,2.935,1089,4.213,1219,5.307,1220,5.307,1221,4.453]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[168,3.328,1221,5.005,1222,5.005,1223,6.478,1224,6.478]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[17,1.442,26,0.081,33,1.665,34,1.681,47,1.867,126,3.577,225,1.848,390,1.966,474,3.736,721,4.049,1219,6.579,1220,8.75,1221,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/",[26,0.057,28,0.726,91,1.199,1225,6.134,1226,6.134]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[820,4.523,823,4.735,1227,6.478,1228,5.965,1229,5.965]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[26,0.045,33,1.22,34,1.231,51,0.301,56,2.119,65,1.593,129,2.902,182,2.259,252,6.978,392,1.82,718,1.571,752,3.449,818,6.179,825,4.545,826,4.042,1225,9.148,1226,9.148,1228,4.818,1229,4.818,1230,4.818,1231,5.233,1232,5.233]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[17,1.247,26,0.053,247,3.772,697,2.316,786,2.327,1233,6.18]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[786,2.913,1234,7.735,1235,7.735]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[12,2.56,16,3.273,17,1.105,26,0.047,33,1.277,34,1.289,94,2.126,107,4.544,130,2.373,151,3.39,247,6.194,325,4.697,452,4.231,697,3.474,786,3.822,813,9.345,1236,7.902]],["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/",[28,0.554,65,0.814,312,3.811,420,3.811,784,2.817,1237,4.677,1238,4.677,1239,4.677,1240,4.677]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[28,0.475,1059,3.041,1211,2.923,1240,4.01,1241,4.355,1242,4.355,1243,4.355,1244,4.355,1245,4.355,1246,4.01,1247,3.365]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[26,0.05,33,1.361,34,1.374,45,0.877,51,0.337,65,1.541,110,2.419,257,3.668,312,6.208,683,4.845,718,1.754,957,3.85,1059,7.296,1157,4.512,1237,7.618,1238,7.618,1239,7.618,1248,4.512,1249,5.378]],["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/",[26,0.049,65,0.924,231,2.886,1202,4.781,1250,5.307,1251,5.307,1252,5.006]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[820,4.923,1247,5.447,1253,7.051,1254,7.051]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[5,0.967,26,0.058,33,1.6,34,1.616,51,0.396,65,1.484,119,2.102,142,2.488,231,4.633,820,4.794,986,5.696,1202,7.676,1250,8.52,1251,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/",[26,0.049,91,1.037,269,0.796,270,1.481,293,3.071,1255,4.781,1256,4.213]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[269,0.675,270,1.256,896,3.118,1090,4.247,1178,1.888,1257,4.889,1258,2.711,1259,4.502,1260,4.502]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[26,0.063,33,1.736,34,1.753,51,0.563,269,1.028,270,2.8,430,6.178,517,5.753,959,5.199,1255,8.102,1259,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/",[28,0.674,63,2.178,784,3.427,1261,5.69,1262,5.368,1263,4.774]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1261,4.796,1262,4.524,1263,4.024,1264,5.209,1265,4.796,1266,5.209,1267,4.524,1268,5.209]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[17,1.286,26,0.086,27,4.545,33,1.485,34,1.499,47,1.252,49,2.716,63,2.245,65,1.021,199,3.907,293,3.393,587,5.794,950,3.942,1262,5.532,1263,6.791,1265,5.864,1267,5.532]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[26,0.057,65,1.068,820,4.651,823,4.869,1059,4.651]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[820,3.891,823,4.073,1059,3.891,1246,5.131,1247,4.305,1269,5.131,1270,5.573]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[26,0.08,33,1.632,61,3.12,62,3.08,65,1.123,95,2.119,203,2.884,295,3.227,316,5.41,332,1.718,388,4.889,392,2.435,447,4.334,820,6.546,982,5.254,1059,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/",[51,0.356,91,1.112,293,3.292,1066,2.327,1271,4.774,1272,4.935]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[499,1.844,776,1.861,896,3.322,1066,1.961,1271,4.024,1272,4.159,1273,4.524,1274,4.796]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[16,2.649,26,0.035,32,2.842,45,1.431,51,0.368,90,1.254,150,3.017,196,3.017,203,2.634,262,1.902,326,3.189,348,2.179,402,3.032,498,2.555,499,2.264,806,2.12,826,3.189,907,2.423,1066,2.947,1111,3.097,1271,6.81,1272,5.106,1273,5.554,1274,3.801,1275,4.128,1276,4.128,1277,4.128,1278,4.128,1279,3.585,1280,4.128,1281,2.366,1282,3.017,1283,4.128]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[26,0.061,28,0.787,92,3.531,1284,6.275]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[28,0.769,776,2.52,1284,6.124,1285,6.492]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[4,1.416,12,2.129,17,1.392,21,1.501,22,1.111,26,0.079,33,1.062,34,1.072,51,0.262,94,1.768,95,1.378,130,1.368,142,1.651,149,1.591,151,2.819,225,1.784,269,1.149,270,1.171,288,3.953,340,1.666,390,1.898,401,2.743,404,3.18,538,3.519,697,1.707,769,3.053,907,2.674,1284,9.11,1286,4.555]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[26,0.067,119,2.415,939,5.631]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[129,3.593,922,4.523,926,4.623,939,4.623,1287,5.965]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[3,2.8,26,0.079,33,1.6,34,1.616,51,0.396,119,2.832,142,2.488,254,3.496,267,4.25,590,5.696,658,4.081,698,3.02,939,7.469,1054,5.482]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[850,0.477]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[26,0.046,65,0.866,140,3.21,193,1.551,216,3.559,420,4.052,570,2.798,1288,4.972]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[193,2.222,216,5.099,1289,7.735]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[5,1.173,21,1.813,26,0.071,32,2.482,33,1.941,34,1.96,45,1.25,51,0.48,1288,9.663]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[4,2.246,65,1.158,669,4.049,1290,6.275]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[823,5.154,1059,4.923,1290,6.124,1291,4.191]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[17,1.089,26,0.046,33,1.257,34,1.269,51,0.45,54,1.901,56,2.184,57,3.849,58,1.789,65,1.473,110,2.234,115,3.849,120,1.632,144,4.306,338,2.596,340,1.973,392,1.876,592,3.387,632,3.555,637,4.047,733,3.128,752,3.555,937,3.765,1096,4.306,1290,9.687]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[50,5.044,51,0.416,187,3.617,741,3.647]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[170,3.021,174,2.652,469,2.699,741,2.63,1292,4.524,1293,4.159,1294,4.796,1295,4.796]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[4,2.094,33,1.57,34,1.585,51,0.388,90,2.046,174,3.429,182,2.907,187,5.189,363,4.055,469,3.49,639,4.003,786,2.536,1009,4.806,1043,4.607,1293,5.377,1295,6.201,1296,4.806,1297,6.201]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[32,1.718,45,0.865,65,0.924,91,1.037,93,3.943,741,2.91,998,4.024]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[469,3.654,741,3.56,1292,6.124,1298,5.032]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[3,2.579,26,0.04,33,1.105,34,1.672,51,0.613,61,2.112,62,2.085,65,1.139,120,1.434,131,2.247,187,3.557,192,2.657,227,1.371,338,2.281,339,2.892,421,3.023,439,2.854,469,2.456,672,1.986,698,2.085,741,4.303,786,1.785,1092,3.556,1109,3.556,1279,4.117,1296,6.082,1299,4.364,1300,4.739]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[65,0.991,335,4.148,336,3.881,659,5.127,741,3.12,1107,3.542]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[469,3.654,741,3.56,1292,6.124,1298,5.032]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[33,1.988,34,2.007,51,0.491,61,3.801,62,3.752,339,5.206,672,3.574,741,4.307,1301,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[21,1.45,22,1.624,26,0.057,733,3.863,852,5.319]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[21,1.535,852,5.63,853,6.492,1302,7.051]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[17,0.997,21,2.103,22,1.786,26,0.042,33,1.151,34,1.162,40,3.842,45,0.741,51,0.285,65,0.792,149,1.725,182,2.132,203,4.25,392,1.718,446,2.276,475,6.364,570,2.559,624,4.829,852,5.85,1077,4.2,1080,3.706,1303,4.939,1304,4.939,1305,4.939,1306,4.548]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[28,0.726,63,2.348,784,3.694,1307,5.786,1308,5.786]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[140,3.561,227,2.437,1307,5.204,1308,5.204,1309,5.992]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[17,1.056,26,0.077,28,0.57,32,1.56,33,1.22,34,1.231,40,3.363,45,0.785,46,2.259,51,0.609,55,2.096,203,2.155,227,1.514,269,1.055,357,2.287,587,3.449,799,1.514,930,3.653,1307,9.179,1308,7.846,1310,5.233]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[159,2.218,232,3.306,769,3.493]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[21,1.213,159,1.566,269,0.769,270,1.432,769,2.467,902,3.891,1311,5.131]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[17,1.334,20,3.745,21,1.438,22,1.611,26,0.087,33,1.54,34,1.555,51,0.635,225,1.709,235,3.066,269,0.912,270,1.698,390,1.818,570,3.424,695,3.18,1312,6.608]],["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/",[5,0.761,28,0.589,47,1.061,63,1.903,199,2.096,784,2.994,1313,2.488,1314,2.798]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[47,1.386,55,2.825,1313,3.249,1314,3.654]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[26,0.062,32,2.174,33,1.7,34,1.716,45,1.095,47,1.893,51,0.555,55,2.921,199,2.83,587,4.807,930,5.092,1313,3.361,1314,4.992]],["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/",[26,0.061,51,0.416,293,3.849,689,4.409]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[269,0.827,270,1.54,689,3.657,690,3.608,1180,3.95,1181,5.517]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[33,1.773,34,1.79,51,0.438,84,4.709,94,2.953,110,3.151,142,2.757,269,1.05,275,5.204,293,4.053,689,6.044,809,5.43,1315,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/",[28,0.674,269,0.853,606,3.825,784,3.427,1316,5.69,1317,5.368]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[26,0.057,33,1.57,34,1.585,51,0.669,54,2.374,222,4.806,223,4.702,269,0.93,310,3.001,399,4.923,812,5.707,1313,3.103,1319,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[51,0.455,338,3.798,637,5.921]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[28,0.408,91,0.673,338,1.801,632,2.467,637,2.808,672,1.568,992,2.387,1320,3.742,1321,3.742,1322,3.742,1323,3.742,1324,3.742,1325,3.742,1326,1.957]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[3,1.632,4,1.677,5,0.76,26,0.046,28,0.588,33,1.257,34,1.269,45,0.809,51,0.311,83,3.206,91,0.971,115,3.849,120,1.632,203,2.221,286,2.873,338,3.761,339,6.528,340,1.973,401,3.247,478,3.555,570,2.795,637,7.561,698,2.372,1326,2.82,1327,5.393]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[5,0.871,17,1.247,273,2.772,288,3.542,757,4.637,769,2.736]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[36,3.271,273,2.499,757,4.182,761,4.305,1328,5.573,1329,5.573,1330,5.131]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,2.504,5,1.166,17,2.227,21,1.271,22,1.424,51,0.337,75,4.078,90,1.774,120,1.767,225,1.511,269,1.142,270,1.501,273,4.687,390,1.607,392,2.031,439,3.517,758,4.845,1331,5.378]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[26,0.061,51,0.416,91,1.3,1332,6.275]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[91,1.078,1059,4.183,1332,5.204,1333,5.992,1334,4.784,1335,5.992]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[26,0.081,33,1.665,34,1.681,45,1.072,51,0.412,65,1.524,149,2.496,182,4.102,187,3.577,936,6.579,1332,9.274,1336,7.145]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[119,2.211,487,4.094,660,2.804,1337,6.652]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[3,1.479,267,3.026,778,3.904,1337,4.502,1338,4.247,1339,4.889,1340,4.502,1341,4.889,1342,4.889]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[32,2.174,33,1.7,34,1.716,45,1.095,51,0.42,149,2.548,416,4.451,654,6.465,778,5.823,1137,5.823,1340,6.715,1343,7.293,1344,6.715,1345,7.293,1346,7.293]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[26,0.053,28,0.674,47,1.214,92,3.021,273,2.772,1347,5.127]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[28,0.843,47,1.52,1348,6.417]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[26,0.084,33,1.773,34,1.79,47,2.164,51,0.438,94,2.953,110,3.151,198,3.841,1027,3.908,1347,8.216]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[26,0.053,28,0.674,93,4.227,784,3.427,1016,4.774,1349,6.18]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[28,0.653,690,3.608,1016,4.629,1018,5.517,1019,5.517,1020,5.517]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[3,1.804,12,1.764,17,1.203,22,0.92,26,0.078,33,0.88,34,0.888,46,1.629,51,0.217,55,1.512,56,2.414,65,1.466,90,1.811,130,1.133,149,2.083,169,2.243,171,2.446,199,1.465,216,2.488,221,2.488,310,3.292,338,1.816,357,1.65,362,2.189,392,1.312,416,2.303,658,3.543,698,1.66,738,3.131,765,2.488,1016,7.86,1022,3.475,1023,3.475,1025,3.475,1026,3.013,1092,2.832,1350,3.774,1351,3.475,1352,3.774]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[28,0.674,32,1.842,45,0.928,47,1.214,784,3.427,1348,5.127]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[28,0.607,47,1.095,570,2.888,1211,3.74,1347,4.623,1348,6.638]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[26,0.055,45,0.973,47,1.997,51,0.374,94,3.455,95,1.963,110,2.687,198,3.275,272,2.407,273,3.992,351,1.791,423,1.597,446,2.989,669,3.636,1027,3.332,1347,7.385,1348,5.381]],["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/",[26,0.049,47,1.133,91,1.037,293,3.071,786,2.17,1256,4.213,1353,4.453]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[47,1.273,896,4.132,1151,4.861,1353,5.005,1354,6.478]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[3,1.538,26,0.076,32,1.514,33,1.185,34,1.196,47,1.47,51,0.293,90,1.543,204,2.326,262,2.342,272,1.886,357,2.221,395,4.025,402,2.409,539,3.101,569,4.216,634,4.216,695,2.446,771,2.544,786,3.689,806,4.562,858,2.326,907,2.983,1153,3.926,1353,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/",[26,0.061,65,1.158,227,2.09,1355,6.652]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1356,9.597]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[26,0.048,28,0.616,51,0.466,58,1.875,91,1.017,157,1.814,159,1.589,193,1.624,225,1.462,228,2.721,315,3.169,351,1.561,364,4.034,410,4.034,536,5.205,545,3.664,570,2.929,843,4.91,1027,2.904,1326,2.956,1355,9.482,1357,4.514,1358,5.653,1359,3.947,1360,5.653,1361,0.841]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[5,1.018,65,1.158,332,1.773,1362,4.762]],["keywords//docs/security/using-fail2ban-for-security/",[1362,5.099,1363,7.735,1364,7.122]],["toc//docs/security/using-fail2ban-for-security/",[5,0.748,26,0.045,28,0.579,45,0.797,51,0.576,91,0.956,157,1.705,159,1.493,187,2.66,232,2.226,242,3.565,320,3.501,644,3.118,776,1.898,1117,4.406,1359,3.708,1362,7.008,1364,4.891,1365,5.312,1366,5.312,1367,5.312,1368,5.312,1369,4.891,1370,7.729,1371,4.891,1372,4.614]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[28,0.628,63,2.032,65,0.924,231,2.886,784,3.196,1252,5.006,1373,5.307]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[28,0.607,820,3.891,823,4.073,1211,3.74,1247,4.305,1374,5.573,1375,5.573]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[26,0.06,33,1.632,34,1.648,51,0.403,65,1.503,110,2.9,231,5.292,718,2.103,986,5.809,1252,6.082,1373,9.733,1376,7.003,1377,7.003]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[26,0.053,46,2.668,47,1.214,91,1.112,93,4.227,1378,5.368]],["keywords//docs/development/version-control/install-gogs-on-debian/",[46,2.797,47,1.273,86,5.374,168,3.328,1378,5.627]],["toc//docs/development/version-control/install-gogs-on-debian/",[5,0.897,26,0.1,33,1.485,46,2.75,47,1.252,51,0.367,57,4.545,84,3.942,193,1.829,325,3.786,337,2.955,421,4.062,660,2.472,1092,4.779,1378,9.427]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[26,0.049,28,0.628,216,3.799,286,3.071,357,2.519,784,3.196,1379,3.799]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[28,0.39,1066,1.346,1211,2.399,1273,3.105,1379,2.356,1380,3.574,1381,2.245,1382,3.574,1383,3.574,1384,3.574,1385,3.574,1386,3.574,1387,3.574,1388,3.105,1389,3.574]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[17,1.613,26,0.08,32,1.658,45,1.199,51,0.321,58,1.845,65,0.892,94,2.159,119,1.703,120,1.683,149,1.944,312,4.175,395,2.993,487,5.301,697,2.085,786,3.522,806,2.858,1153,4.298,1331,5.123,1379,6.739]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[26,0.061,159,2.031,232,3.027,1390,5.28]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[159,1.161,902,2.883,1391,4.13,1392,4.13,1393,4.13,1394,3.587,1395,4.13,1396,4.13,1397,4.13,1398,4.13,1399,4.13,1400,4.13]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[16,2.136,26,0.093,33,1.202,34,1.213,51,0.436,61,2.297,62,2.268,104,2.54,110,2.136,159,1.449,198,3.818,310,2.297,338,2.482,340,1.886,357,2.254,482,2.482,632,3.399,658,3.065,1390,7.211,1401,5.156,1402,6.963,1403,4.277,1404,5.156,1405,5.156,1406,4.478]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[28,0.674,119,1.892,660,2.398,772,4.074,784,3.427,1137,4.935]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[28,0.653,701,4.629,772,3.95,937,4.183,1137,4.784,1407,5.992]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[26,0.065,180,5.015,654,5.106,660,3.844,772,6.528,799,2.201,800,3.719,1137,7.908,1279,6.608,1408,7.608,1409,5.204]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[159,2.218,175,4.632,1096,6.3]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[4,1.221,119,1.202,157,1.26,159,1.104,267,2.43,332,0.963,338,1.89,632,2.588,1096,3.135,1410,3.926,1411,3.926,1412,3.926,1413,3.926]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[26,0.051,45,0.891,51,0.559,58,1.97,83,3.53,120,1.797,331,3.227,338,2.858,339,3.625,362,3.444,446,2.737,566,4.146,632,3.915,1005,5.159,1096,7.742,1108,3.576,1414,3.915,1415,5.939,1416,5.939,1417,5.939,1418,5.468,1419,5.939,1420,4.588]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[26,0.053,51,0.356,65,0.991,234,3.427,525,4.074,866,4.774]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1421,7.735,1422,7.735,1423,7.735]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[26,0.076,33,1.512,34,1.526,51,0.586,63,2.286,95,1.963,203,2.671,234,3.597,295,2.989,525,7.805,809,4.629,866,5.011,1424,5.972,1425,6.486]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[29,3.392,159,1.872,232,2.791,276,3.91,1263,5.146]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[20,3.158,21,1.213,29,2.838,269,0.769,1263,4.305,1267,4.84,1426,5.573]],["toc//docs/development/java/java-development-wildfly-centos-7/",[5,0.784,21,1.211,26,0.08,29,2.833,33,1.297,34,1.309,48,3.667,49,2.373,51,0.46,65,0.892,203,2.291,269,1.103,293,2.964,337,3.709,567,5.123,612,4.442,950,3.443,1263,7.226,1282,4.067,1427,5.564,1428,5.564,1429,5.564,1430,5.564,1431,5.564]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[26,0.067,51,0.455,757,5.921]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[759,7.122,760,6.719,761,5.976]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[26,0.062,33,1.151,34,1.162,45,0.741,51,0.557,149,1.725,150,7.543,203,3.979,233,4.152,234,4.843,273,3.286,286,2.631,403,3.525,632,3.256,665,2.215,757,8.112,771,2.473,786,1.86,806,2.537]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[47,1.42,51,0.416,361,4.942,535,5.156]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[47,1.273,347,4.01,361,4.432,535,4.623,713,3.217]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[3,1.935,13,3.424,33,0.962,35,2.158,78,3.424,118,2.946,174,2.102,182,3.379,187,2.067,227,1.194,315,2.314,316,3.189,337,1.916,361,4.374,362,2.394,364,2.946,405,3.801,409,6.25,538,3.189,698,3.443,722,2.034,848,3.017,1011,3.585,1089,3.017,1432,3.585,1433,4.016,1434,4.128,1435,4.128,1436,2.454,1437,4.128,1438,4.128,1439,4.128,1440,4.128,1441,3.801,1442,3.801,1443,4.128,1444,3.424,1445,3.801,1446,4.128,1447,3.801,1448,3.801,1449,4.128,1450,4.128,1451,3.801]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[32,1.842,45,0.928,65,0.991,693,4.517,1452,5.368,1453,4.935]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[693,3.574,1291,2.906,1452,4.247,1453,3.904,1454,4.889,1455,4.889,1456,4.889,1457,4.889,1458,4.889]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[26,0.062,32,2.161,45,1.088,51,0.499,65,1.389,119,2.219,130,1.463,182,2.103,233,2.76,260,3.763,338,3.49,392,1.694,718,1.463,728,3.889,799,1.409,800,2.381,1027,2.502,1291,2.895,1452,8.911,1453,5.79,1459,4.871,1460,4.871,1461,6.015,1462,6.298]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[26,0.057,392,2.317,597,5.319,745,5.526,1463,6.134]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[745,4.321,1464,7.619,1465,5.209,1466,5.209,1467,5.209,1468,5.209,1469,5.209]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[3,1.454,5,0.677,17,0.97,26,0.061,28,0.524,51,0.495,54,1.693,62,2.113,65,0.77,149,1.678,171,4.651,193,1.38,211,4.173,235,2.229,246,3.429,288,2.754,302,3.836,351,1.982,392,2.496,669,2.693,718,1.443,745,8.462,809,3.429,1248,3.711,1463,7.911,1470,4.804,1471,4.804,1472,4.804,1473,4.173]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[51,0.455,697,2.956,1169,5.295]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[26,0.044,51,0.3,119,1.594,508,4.159,645,3.496,697,1.952,786,1.961,1169,3.496]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[26,0.06,33,1.632,34,1.648,47,1.376,51,0.54,65,1.503,193,2.693,262,3.227,269,0.967,539,4.274,697,2.624,755,5.809,786,2.637,800,3.423,1169,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[5,0.938,119,2.039,393,4.317,960,5.526,1474,5.319]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[393,4.57,937,4.923,960,5.85,1474,5.63]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[119,2.744,132,6.727,340,3.279,480,5.025,660,3.479,960,9.114]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[21,1.573,26,0.061,159,2.031,232,3.027]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1475,2.871,1476,3.478,1477,3.478,1478,3.613,1479,3.108]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[20,4.094,26,0.061,159,2.031,232,3.027]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1476,3.478,1479,3.108,1480,4.355,1481,4.355,1482,4.355]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[5,0.851,17,1.71,20,6.564,22,1.473,26,0.051,33,1.408,34,1.422,65,0.969,110,2.502,126,3.025,149,2.11,347,3.739,587,3.982,957,3.982,961,3.739,962,4.514,963,2.727,998,4.218,1077,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[227,2.09,351,1.995,698,3.178,1483,4.141]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[332,1.59,698,3.912,1483,3.713,1484,4.623]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[3,1.607,4,1.651,12,2.482,26,0.045,28,0.579,37,3.08,51,0.306,91,0.956,157,1.705,159,1.493,232,2.226,336,3.336,392,3.169,447,3.287,698,2.337,776,1.898,937,3.708,1326,2.777,1483,6.725,1485,5.312,1486,4.614,1487,9.111,1488,4.241]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[28,0.674,65,0.991,193,1.775,269,0.853,784,3.427,1194,3.045]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[28,0.653,269,0.827,337,2.78,713,2.976,1211,4.021,1489,5.992]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[16,2.546,26,0.084,33,1.433,34,1.446,51,0.494,56,3.473,183,4.612,225,1.59,269,1.364,273,4.794,315,3.445,390,1.691,482,2.958,1490,4.291,1491,5.339,1492,4.748]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[28,0.628,65,0.924,120,1.744,469,2.987,754,3.567,784,3.196,1493,5.006]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[28,0.706,469,3.357,1211,4.348,1493,5.627,1494,6.478]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[26,0.074,33,2.038,34,2.057,51,0.504,65,1.402,182,3.774,1493,9.395]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[26,0.061,65,1.158,119,2.211,1495,6.275]],["keywords//docs/game-servers/install-teamspeak/",[1247,5.447,1495,6.124,1496,7.051,1497,5.447]],["toc//docs/game-servers/install-teamspeak/",[2,5.254,26,0.06,33,1.632,34,1.648,51,0.403,94,2.718,110,2.9,325,4.162,338,3.37,392,2.435,491,4.616,629,4.998,1495,10.222,1498,7.003]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[48,4.391,51,0.384,119,2.039,499,2.359,1499,6.134]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[664,5.173,1500,6.478,1501,5.965,1502,5.627,1503,6.478]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[45,1.498,48,6.58,499,3.534]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[26,0.053,47,1.214,65,0.991,91,1.112,193,1.775,293,3.292]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[47,1.177,91,1.078,337,2.78,713,2.976,896,3.821,897,5.204]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[26,0.071,33,1.941,34,1.96,47,2.062,91,1.499,95,2.52,295,4.836,357,3.64]],["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/",[5,0.812,51,0.332,288,3.304,525,3.799,769,2.552,866,4.453,1504,4.602]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.732,21,1.213,269,0.769,270,1.432,525,3.674,896,3.554,1505,5.131]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[3,2.645,17,2.183,51,0.504,225,2.261,390,2.406,769,3.87,1504,6.98]],["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/",[5,0.715,17,1.025,288,2.911,525,4.93,769,2.249,866,3.924,1362,3.348,1504,4.055]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[21,1.064,269,0.675,270,1.256,525,3.223,896,3.118,1362,3.223,1505,4.502,1506,3.904,1507,4.889]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[3,2.406,17,2.057,51,0.458,204,3.639,234,4.41,525,6.717,558,6.349,866,6.143,1504,6.349,1508,7.952]],["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/",[65,0.991,91,1.112,193,1.775,269,0.853,293,3.292,1256,4.517]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[91,0.937,269,0.719,699,4.796,700,4.159,713,2.587,1509,5.209,1510,4.159,1511,5.209]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[16,2.502,26,0.083,33,1.408,34,1.422,51,0.488,56,3.432,183,4.533,225,1.563,269,1.464,273,4.758,315,3.386,390,1.662,482,2.907,1490,4.218,1491,5.247,1492,4.667]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[91,1.3,293,3.849,769,3.198,1256,5.28]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[21,0.899,91,0.743,269,0.57,270,1.061,305,2.103,769,1.828,896,2.634,1512,4.13,1513,4.13,1514,3.426,1515,3.803,1516,4.13]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[21,2.278,22,1.674,26,0.079,32,2.046,33,1.6,34,1.616,45,1.03,51,0.533,225,1.776,235,3.186,269,1.277,270,1.764,390,1.889,695,3.305]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[104,3.559,131,3.425,132,5.421,392,2.512]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[104,2.952,862,4.276,922,4.183,927,3.517,1517,5.517,1518,5.517]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[26,0.073,51,0.491,104,4.202,131,5.051,388,5.955,927,5.007,1519,6.811,1520,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/",[104,3.045,119,1.892,131,2.93,132,4.637,392,2.149,922,4.315]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[104,2.745,862,3.977,893,4.623,922,3.891,927,3.271,1517,5.131,1518,5.131]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[4,1.911,26,0.052,28,0.935,51,0.354,91,1.543,104,3.028,131,4.684,157,2.752,159,2.411,232,2.575,388,4.291,495,3.86,927,3.608,1326,4.485,1519,4.908,1520,5.66,1521,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/",[47,1.309,91,1.199,93,4.557,474,3.483,1206,3.549]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[47,1.095,91,1.003,474,2.914,1207,3.356,1522,3.891,1523,3.449,1524,5.131]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[16,2.591,21,1.362,26,0.092,33,1.458,34,1.472,47,1.706,61,2.787,62,2.752,63,2.205,110,2.591,224,3.628,310,2.787,340,2.288,474,3.271,482,4.179,721,4.92,1206,4.625]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[5,0.938,119,2.039,120,2.016,192,3.734,1525,5.786]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[36,2.704,119,1.41,120,1.394,180,3.037,269,0.636,276,2.704,474,2.409,687,4.002,1525,4.002,1526,4.242]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[3,2.078,26,0.079,32,2.046,45,1.03,51,0.533,65,1.101,119,2.102,137,3.891,269,0.948,529,3.849,658,4.081,718,2.062,778,5.482,1525,8.037,1526,6.322,1527,5.964]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[922,6.069,1528,7.211]],["keywords//docs/platform/kvm-reference/",[922,4.523,1529,6.478,1530,6.478,1531,6.478,1532,5.627]],["toc//docs/platform/kvm-reference/",[4,1.945,50,4.368,51,0.36,104,3.082,129,3.469,159,1.758,254,3.185,257,3.929,340,2.288,373,4.368,390,1.721,455,3.929,596,3.929,658,3.718,800,3.058,888,5.434,922,4.368,937,4.368,1034,2.637,1326,3.271,1420,4.833,1532,5.434,1533,6.256,1534,4.694]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[21,1.573,26,0.061,91,1.3,293,3.849]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.284,20,2.34,21,0.899,22,1.007,91,0.743,267,2.556,896,2.634,1475,2.722,1476,3.298,1477,3.298,1478,3.426,1479,2.947]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["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/",[26,0.049,28,0.628,47,1.133,51,0.332,92,2.817,270,1.481,1178,2.225]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[47,1.386,270,1.812,903,5.291,1178,2.723]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[26,0.057,33,1.57,34,1.585,47,1.795,51,0.388,90,2.046,95,2.038,148,5.849,225,1.742,270,2.663,272,2.499,315,3.775,332,1.652,390,1.853,624,4.439,1178,2.6,1535,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/",[28,0.726,47,1.309,270,1.712,784,3.694,1178,2.572]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[28,0.607,47,1.095,270,1.432,1178,2.152,1536,5.573,1537,3.271,1538,3.74]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.559,58,1.97,72,3.625,90,1.804,95,1.797,110,2.46,177,5.519,225,1.536,270,1.526,272,2.204,332,1.457,340,2.172,390,1.634,423,1.462,624,3.915,1178,2.293,1433,3.73,1535,3.73]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1171,5.921,1539,7.265,1540,5.631]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[36,2.87,761,3.777,1330,4.502,1540,3.49,1541,4.889,1542,4.502,1543,4.889,1544,3.777,1545,4.502]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[3,1.963,65,1.04,186,5.972,187,3.248,192,3.636,233,3.676,392,2.256,495,4.074,530,3.906,650,5.634,763,4.629,1118,5.381,1540,7.253,1544,5.011,1546,6.486,1547,5.634,1548,6.486,1549,6.486,1550,6.486,1551,5.972]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[17,1.458,809,5.156,1540,5.156,1544,5.581]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[36,3.058,761,4.024,769,2.306,1506,4.159,1540,3.717,1544,4.024,1545,4.796,1552,5.209]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[17,1.774,21,2.363,26,0.054,32,1.898,45,0.956,51,0.506,94,2.472,225,1.648,247,3.887,269,1.213,270,1.637,340,2.33,390,1.753,963,2.876,1544,4.92,1551,5.864,1553,6.369]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[26,0.053,28,0.674,65,0.991,784,3.427,1118,5.127,1540,4.411]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[760,4.247,761,3.777,1222,3.777,1540,3.49,1542,4.502,1554,4.889,1555,4.889,1556,4.889,1557,4.502]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[16,2.46,17,1.199,26,0.051,32,1.77,45,0.891,65,1.342,94,2.305,149,2.075,169,3.53,203,3.448,233,3.366,262,2.737,486,2.816,528,5.159,539,3.625,718,1.783,771,2.974,972,4.742,1118,6.946,1540,5.975,1544,4.588,1557,5.468,1558,5.939]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[4,1.792,26,0.049,65,0.924,332,1.414,660,2.237,741,2.91,905,3.676]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[28,0.607,91,1.003,157,1.788,159,1.566,469,2.888,672,2.335,741,2.814]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[4,1.98,26,0.075,45,0.956,51,0.367,65,1.021,120,1.927,149,2.225,170,3.694,174,3.243,187,4.401,363,3.835,533,4.128,660,2.472,741,5.75,799,1.843,1559,6.369,1560,6.369]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[119,2.211,1433,4.537,1561,5.156,1562,5.28]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[332,1.59,338,3.118,1563,6.478,1564,6.478,1565,5.627]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[5,1.27,35,3.455,286,3.52,446,3.045,566,4.614,698,2.907,979,6.085,1005,5.74,1433,6.445,1562,7.501,1566,6.085,1567,6.608,1568,6.608,1569,6.085,1570,6.608,1571,5.74]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[91,1.3,293,3.849,1044,3.504,1256,5.28]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[91,1.269,1044,3.42,1256,5.154,1572,4.246]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[26,0.057,31,4.055,32,2.007,58,2.234,91,1.212,104,3.318,110,2.789,119,2.061,130,2.022,142,2.44,293,3.588,380,4.806,531,4.295,592,4.23,752,4.439,800,3.292,1027,3.459,1044,4.429,1573,5.849]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[28,0.628,65,0.924,392,2.005,784,3.196,1291,3.426,1453,4.602,1574,5.764]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1291,5.091,1453,6.84]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[17,1.536,26,0.065,51,0.438,65,1.22,110,3.151,129,4.219,137,4.312,142,2.757,149,2.658,586,7.005,658,4.522,1291,4.522,1575,9.904]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[26,0.046,28,0.589,65,0.866,784,2.994,1059,3.77,1091,4.69,1576,5.4,1577,4.972]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[28,0.533,820,3.414,1059,3.414,1157,3.777,1211,3.281,1247,3.777,1269,4.502,1578,4.889,1579,4.889]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[26,0.057,33,1.57,34,1.585,51,0.388,65,1.464,110,2.789,348,3.554,718,2.022,986,5.587,1091,9.001,1157,5.203,1577,9.542,1580,6.735,1581,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/",[28,0.589,91,0.972,104,2.66,129,2.994,570,2.798,858,2.471,927,3.17,1582,3.854]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[28,0.568,91,0.937,859,4.024,860,4.024,861,3.908,862,3.717,1583,4.159,1584,4.159]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[850,0.477]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[5,0.938,139,4.651,551,3.734,729,5.146,1585,6.661]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[28,0.706,91,1.166,139,4.523,551,3.631,729,5.005]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[3,1.207,16,1.652,17,0.805,25,2.784,26,0.088,29,2.031,31,2.401,32,1.188,40,2.738,51,0.541,58,1.323,60,5.732,90,1.891,94,1.548,126,1.997,137,3.528,139,5.346,149,2.175,362,2.313,455,2.504,487,2.26,532,3.081,644,2.341,663,2.401,718,1.197,729,7.683,790,3.672,1082,2.728,1092,2.992,1586,3.988,1587,8.652]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[65,1.158,91,1.3,232,3.027,1588,6.275]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[91,1.392,1291,4.598,1588,6.719]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[26,0.091,65,1.708,137,4.834,182,3.683,392,2.967,718,2.562,1588,7.409]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[6,2.62,162,2.685,696,5.127,1528,5.127,1589,6.18,1590,6.18]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[6,2.989,162,3.063,1591,7.051,1592,7.051]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[162,3.618,164,5.591,397,1.204,446,3.838,480,6.441,686,7.668,775,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/",[20,3.502,159,1.737,232,2.589,776,2.208,1066,2.327,1593,3.262]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[776,2.315,902,4.523,1594,6.478,1595,6.478,1596,4.623]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[20,4.635,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["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/",[21,1.345,159,1.737,776,2.208,1034,2.605,1066,2.327,1593,3.262]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[776,2.315,1036,5.173,1596,4.623,1599,6.478,1600,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[21,1.78,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[63,2.178,65,0.991,162,2.685,193,1.775,221,4.074,824,5.127]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[28,0.568,91,0.937,162,2.263,164,2.775,221,3.434,233,2.952,713,2.587,1601,4.796]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[26,0.066,65,1.611,94,3.018,162,4.834,164,4.143,193,2.234,221,6.621,392,2.704,480,4.359]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[28,0.726,91,1.199,231,3.335,1602,5.146,1603,6.134]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[28,0.706,91,1.166,823,4.735,1604,6.478,1605,6.478]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[5,0.866,6,2.606,26,0.052,33,1.433,34,1.446,51,0.354,56,2.489,65,0.986,231,4.946,252,4.748,718,1.846,1092,4.612,1230,5.66,1249,7.897,1281,3.523,1602,7.631,1603,9.095,1606,5.66]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[5,0.938,21,1.45,361,4.557,535,4.754,1479,4.754]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[21,1.535,1479,5.032,1607,7.051,1608,6.492]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[21,2.187,347,4.813,361,5.319,930,5.429,966,6.754,1479,5.55,1609,7.776,1610,7.776,1611,7.776,1612,7.776,1613,7.776,1614,7.776]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[125,5.767,1056,7.265,1171,5.921]],["keywords//docs/uptime/reboot-survival-guide/",[125,5.154,1615,7.051,1616,7.051,1617,7.051]],["toc//docs/uptime/reboot-survival-guide/",[3,1.767,19,3.112,22,1.424,28,0.637,31,4.982,32,2.466,58,1.937,90,1.774,91,1.051,125,6.048,159,2.326,219,4.168,232,2.447,329,4.078,338,2.811,339,3.564,507,4.382,624,3.85,697,2.188,825,5.073,1034,2.462,1618,5.841,1619,5.841,1620,5.841]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[65,1.265,269,1.089,347,4.884]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[51,0.406,269,0.973,713,3.502,1608,6.492]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[183,5.152,269,0.948,273,4.15,315,3.849,409,5.482,843,5.964,930,4.794,1490,4.794,1491,5.964,1621,6.322,1622,6.866,1623,6.866,1624,6.866,1625,6.866,1626,6.866,1627,6.866,1628,6.866,1629,6.866]],["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/",[26,0.057,63,2.348,162,2.894,288,3.818,769,2.949]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[28,0.706,91,1.166,162,2.814,769,3.938]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[21,1.588,26,0.082,45,1.095,51,0.42,94,2.83,162,4.685,164,3.885,269,1.007,392,2.536,480,4.088,661,4.58,718,2.19,769,3.229]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[850,0.477]],["title//docs/uptime/monitoring/top-htop-iotop/",[5,0.938,65,1.068,227,1.927,535,4.754,558,5.319]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[227,1.874,558,5.173,1630,5.627,1631,5.965,1632,5.173]],["toc//docs/uptime/monitoring/top-htop-iotop/",[6,4.717,7,4.565,16,3.221,204,3.559,303,5.684,558,6.209,751,7.16,752,5.126,1566,7.16,1630,6.754,1631,7.16]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[65,1.068,90,2.023,193,1.913,329,4.651,1633,5.786]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1633,6.719,1634,7.735,1635,7.735]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[3,2.406,6,4.32,17,1.605,51,0.587,94,3.086,302,6.349,392,2.766,400,4.612,1633,8.851]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[20,3.266,28,0.628,32,1.718,45,0.865,91,1.037,341,2.535,1099,4.602]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[20,2.952,21,1.134,28,0.568,91,0.937,341,2.291,509,3.908,1099,4.159,1636,4.796]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[22,2.03,26,0.071,45,1.25,51,0.48,90,2.53,95,2.52,272,3.09,338,4.008,1086,4.668,1099,6.65]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[110,3.268,491,5.201,1169,5.295]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[508,7.475,509,4.182,1169,5.37,1636,5.131]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[51,0.438,204,3.482,225,1.968,390,2.094,593,6.608,652,6.312,694,4.053,898,5.561,1169,7.39,1637,5.561,1638,4.709,1639,7.608]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[26,0.057,168,3.422,295,3.07,909,5.526,1095,4.869]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[168,3.077,909,4.971,1640,5.204,1641,4.784,1642,4.784,1643,4.971]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[17,1.752,26,0.053,51,0.36,90,2.637,168,3.213,295,2.883,395,3.365,464,5.19,487,3.545,774,5.76,909,7.203,1095,6.346,1547,8.661,1644,8.682,1645,6.256,1646,6.256,1647,6.256]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[26,0.057,51,0.384,91,1.199,232,2.791,572,5.526]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[97,7.887,1648,8.566]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[3,2.733,12,3.573,26,0.045,45,0.785,51,0.44,94,2.031,126,3.828,129,2.902,227,1.514,242,3.512,339,3.194,373,3.653,415,6.796,545,3.391,572,8.767,622,4.818,718,1.571,776,1.87,848,3.825,907,3.072,1359,3.653,1445,4.818,1649,4.818]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[26,0.061,91,1.3,1291,4.294,1650,6.275]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[91,0.88,896,3.118,897,4.247,1256,3.574,1291,2.906,1572,2.944,1650,4.247,1651,4.247,1652,3.414]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[26,0.085,33,1.813,34,1.83,51,0.448,65,1.247,110,3.221,120,2.353,338,3.743,718,2.335,799,2.25,1291,4.622,1650,6.754]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[26,0.067,91,1.42,1653,6.096]],["keywords//docs/game-servers/multicraft-on-debian/",[91,1.392,1291,4.598,1653,5.976]],["toc//docs/game-servers/multicraft-on-debian/",[26,0.092,51,0.504,486,4.145,718,2.625,754,5.411,1291,5.196,1653,6.754]],["deprecated//docs/game-servers/multicraft-on-debian/",[850,0.477]],["title//docs/game-servers/multicraft-on-ubuntu/",[26,0.067,28,0.86,1653,6.096]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[28,0.843,1291,4.598,1653,5.976]],["toc//docs/game-servers/multicraft-on-ubuntu/",[26,0.092,51,0.504,486,4.145,718,2.625,754,5.411,1291,5.196,1653,6.754]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[26,0.041,28,0.523,65,0.769,91,0.863,119,1.467,336,3.011,916,3.504,1113,4.164,1654,4.164,1655,4.415]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1654,6.719,1655,7.122,1656,7.735]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[5,1.263,26,0.076,51,0.516,142,3.248,351,2.475,1654,9.542]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[140,4.69,305,4.018,772,5.201]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[67,3.851,140,5.286,368,4.199,1657,5.965]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[32,2.425,140,4.836,203,4.258,270,2.09,336,6.494,772,5.363,806,4.179,1601,7.491,1658,5.363]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[140,4.69,551,4.423,772,5.201]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[67,3.561,140,5.007,368,3.883,551,3.358,1657,5.517]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[32,1.969,44,5.276,137,3.745,140,6.858,203,3.713,336,5.662,772,7.605,806,3.394,1214,5.74,1218,5.105,1659,6.608]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[103,5.421,417,5.581,1044,3.504,1660,6.652]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[28,0.533,91,0.88,116,3.574,157,1.569,159,1.374,332,1.2,417,3.777,877,3.669,1044,2.371]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[26,0.078,28,0.995,90,2.046,91,1.644,133,5.849,157,2.161,159,2.567,169,4.003,232,2.822,1027,3.459,1034,2.838,1044,3.266,1282,4.923,1660,6.201,1661,6.735,1662,6.735]],["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/",[28,0.674,32,1.842,45,0.928,65,0.991,91,1.112,1291,3.673]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[28,0.843,91,1.392,1291,4.598]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[26,0.074,65,1.402,182,3.774,392,3.04,718,2.625,1291,6.982]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[28,0.86,769,3.493,784,4.376]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[21,1.134,269,0.719,270,1.338,1211,3.496,1663,4.796,1664,5.209,1665,5.209,1666,4.024]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[17,1.503,21,2.126,22,1.815,26,0.083,33,1.736,34,1.753,51,0.628,225,1.926,269,1.028,270,1.914,390,2.049]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[159,2.031,232,3.027,1492,5.581,1667,7.224]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[159,2.174,902,5.4,1668,7.735]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[3,1.828,5,0.851,26,0.051,33,1.408,34,1.422,51,0.348,56,3.432,65,1.569,125,4.416,130,1.814,325,3.591,590,5.012,718,1.814,1092,6.358,1492,7.56,1669,9.786,1670,6.041,1671,6.041]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[15,5.397,51,0.455,499,2.794]],["keywords//docs/networking/dns/common-dns-configurations/",[1502,6.719,1672,7.122,1673,7.122]],["toc//docs/networking/dns/common-dns-configurations/",[5,1.208,32,1.832,45,0.922,51,0.354,58,2.039,65,1.375,214,4.444,225,1.59,241,3.984,245,4.291,402,4.684,498,3.804,499,2.176,500,4.612,776,2.196,777,2.606,1571,5.339,1674,5.66,1675,4.908,1676,4.908]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[26,0.061,47,1.42,91,1.3,221,4.762]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[91,0.88,305,2.49,1677,3.904,1678,4.247,1679,4.889,1680,4.889,1681,4.247,1682,4.889,1683,4.889]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[3,2.915,12,3.408,17,1.944,26,0.082,47,1.433,51,0.42,65,1.169,143,6.334,193,2.095,221,4.807,320,4.807,382,6.715,1684,7.293]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[4,1.921,26,0.053,330,4.935,672,2.589,1685,5.368,1686,5.368]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[330,5.63,672,2.954,929,5.63,1685,6.124]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[4,2.016,5,0.914,16,2.687,26,0.055,28,0.707,65,1.427,90,1.97,91,1.167,187,4.457,1282,6.507,1326,3.392,1433,4.074,1521,4.015,1685,7.732,1687,6.486,1688,5.381,1689,5.972,1690,6.486]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[225,1.869,531,4.607,551,4.049,1098,5.28]],["keywords//docs/websites/cms/high-availability-wordpress/",[21,1.41,509,4.861,551,3.631,1086,3.631,1691,5.965]],["toc//docs/websites/cms/high-availability-wordpress/",[17,1.16,22,1.401,26,0.07,32,1.712,45,0.862,51,0.632,95,1.738,149,2.007,234,4.535,269,0.793,272,2.132,286,3.061,551,3.22,718,1.725,799,1.662,1086,5.337,1169,3.856,1527,4.99,1692,4.311,1693,4.99,1694,5.745]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[21,1.345,22,1.507,51,0.356,234,4.774,1086,3.464]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[509,5.291,1086,3.952,1691,6.492,1695,7.051]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[17,1.503,21,2.126,22,1.815,26,0.063,51,0.563,149,2.602,234,5.416,286,3.967,1086,6.108,1692,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[26,0.074,221,5.73]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[305,3.59,1677,5.63,1678,6.124,1696,6.492]],["toc//docs/development/nodejs/how-to-install-nodejs/",[26,0.06,95,2.837,120,3.198,169,4.162,198,3.536,233,5.314,357,3.061,562,6.082,629,4.998,696,5.809,738,5.809,1697,6.448,1698,7.003,1699,7.003]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[26,0.053,159,1.737,232,2.589,288,3.542,1178,2.386,1187,3.147]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[4,1.732,47,1.095,159,1.566,270,1.432,1178,2.152,1187,2.838,1700,2.623]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[20,3.609,26,0.075,45,0.956,47,2.133,51,0.58,57,4.545,58,2.112,63,2.245,110,2.638,225,1.648,270,2.259,390,1.753,423,1.568,1178,3.394,1701,4.779]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[672,3.642,942,6.941]],["keywords//docs/platform/network-helper/",[570,2.888,644,3.271,664,4.45,672,3.353,1702,5.573,1703,5.573]],["toc//docs/platform/network-helper/",[3,1.86,28,0.67,45,0.922,51,0.354,91,1.106,133,5.339,157,1.973,159,1.728,312,4.612,392,2.138,415,4.205,533,3.984,672,3.593,942,6.848,1282,6.269,1326,3.214,1424,5.66,1448,5.66,1521,3.804,1688,5.099,1704,5.339,1705,6.147]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[19,2.877,91,0.972,232,2.263,273,2.422,570,2.798,689,3.295,1218,4.172,1706,4.312]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[91,0.937,551,2.92,689,3.179,690,3.136,691,3.807,1180,3.434,1706,4.159,1707,4.796]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[19,5.062,26,0.081,36,4.194,61,3.184,62,3.143,119,2.187,273,3.204,552,3.806,689,4.36,718,2.146,1218,5.52,1706,9.087]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[5,0.812,26,0.049,91,1.037,232,2.415,570,2.987,689,3.518,1706,4.602]],["keywords//docs/websites/cms/drush-drupal/",[91,0.937,551,2.92,570,2.699,689,3.179,690,3.136,691,3.807,1180,3.434,1707,4.796]],["toc//docs/websites/cms/drush-drupal/",[3,1.657,5,0.772,16,2.269,17,1.105,26,0.079,45,0.822,65,1.267,149,2.761,166,4.003,168,2.813,204,2.506,305,2.789,332,1.344,416,4.823,552,2.918,689,3.343,718,1.645,848,4.003,1026,6.31,1282,4.003,1490,3.824,1706,8.104,1708,5.477]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[159,1.872,232,2.791,269,0.92,697,2.496,786,2.508]],["keywords//docs/security/ssl/ssl-apache2-centos/",[157,1.672,269,0.719,697,1.952,1709,3.563,1710,4.796,1711,4.524,1712,5.209,1713,3.434]],["toc//docs/security/ssl/ssl-apache2-centos/",[5,1.202,33,1.988,34,2.007,51,0.614,90,2.591,269,1.178,697,3.196,786,3.212]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[28,0.674,91,1.112,269,0.853,570,3.203,697,2.316,786,2.327]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[28,0.568,91,0.937,269,0.719,697,1.952,713,2.587,1709,3.563,1714,4.796,1715,4.796]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[5,1.202,33,1.988,34,2.007,51,0.614,90,2.591,269,1.178,697,3.196,786,3.212]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[28,0.787,784,4.006,1044,3.504,1194,3.559]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[28,0.843,1044,3.751,1211,5.191]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[26,0.057,28,0.995,31,4.055,32,2.007,58,2.234,104,3.318,119,2.061,130,2.022,142,2.44,531,4.295,592,4.23,988,5.587,1027,3.459,1044,5.026,1194,3.318,1195,5.587,1716,2.907]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[850,0.477]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[26,0.049,47,1.133,91,1.037,232,2.415,786,2.17,1353,4.453,1572,3.47]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[47,0.905,1151,3.457,1153,3.559,1353,3.559,1572,2.774,1652,3.216,1681,4.002,1717,4.607,1718,4.242,1719,3.822]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[3,1.516,26,0.063,32,1.493,47,1.455,90,1.522,91,0.901,95,1.516,119,1.533,203,2.063,204,2.292,262,2.308,272,1.859,295,2.308,357,2.19,395,3.983,402,2.375,539,3.057,569,4.156,634,4.156,695,2.411,718,1.504,771,2.508,786,3.663,806,4.523,907,2.94,1153,3.87,1353,7.516]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1039,3.82]],["title//docs/websites/cms/cms-overview/",[120,2.186,351,1.995,722,3.559,898,5.28]],["keywords//docs/websites/cms/cms-overview/",[551,3.124,570,2.888,689,3.401,690,3.356,691,4.073,1180,3.674,1720,5.131]],["toc//docs/websites/cms/cms-overview/",[61,3.39,62,3.347,119,2.329,120,2.302,351,2.101,551,5.551,650,6.608,689,6.044,691,7.239,722,3.748,1218,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[421,5.032,1721,6.853,1722,7.265]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[28,0.568,91,0.937,116,3.807,157,1.672,159,1.464,332,1.278,1721,4.524,1722,4.796]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[47,1.404,90,2.17,269,1.312,421,6.06,506,5.52,741,3.607,1066,2.69,1068,5.222,1593,3.771,1721,9.274,1723,7.145,1724,6.579,1725,7.145]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[3,2.388,1043,5.397,1726,6.096]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1726,4.629,1727,4.784,1728,5.517,1729,4.496,1730,5.517,1731,5.517]],["toc//docs/tools-reference/file-transfer/filezilla/",[5,1.331,26,0.08,718,2.837,1726,8.76]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[26,0.049,28,0.628,92,2.817,273,2.585,486,2.733,754,3.567,1732,5.006]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[486,3.343,754,4.364,1732,6.124,1733,7.051]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[3,1.767,26,0.082,33,1.361,34,1.374,51,0.337,120,1.767,260,4.512,273,4.309,423,1.438,486,2.769,665,2.62,698,2.569,754,3.615,1027,3,1282,4.269,1675,4.663,1676,4.663,1732,9.95,1734,4.845]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[26,0.049,28,0.628,65,0.924,216,3.799,357,2.519,777,2.444,1735,5.006]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[776,2.764,777,3.279,1735,6.719]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[26,0.046,65,0.865,90,1.638,149,1.884,151,4.837,203,2.221,269,0.744,348,2.846,388,3.765,392,1.876,404,3.765,498,3.338,718,1.619,777,2.286,786,2.942,957,3.555,982,4.047,1271,7.1,1272,7.338,1499,8.462,1735,4.684,1736,4.474,1737,5.393,1738,5.393,1739,5.393]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[103,5.421,877,5.421,1044,3.504,1740,6.652]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[28,0.533,91,0.88,116,3.574,157,1.569,159,1.374,332,1.2,877,3.669,1044,2.371,1740,4.502]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[4,1.557,26,0.043,28,0.546,91,0.901,103,3.759,157,1.608,159,1.408,877,7.789,1027,2.573,1044,2.429,1326,2.619,1521,3.1,1688,4.156,1704,4.351,1741,10.381,1742,10.381,1743,5.009,1744,5.009,1745,5.009,1746,5.009,1747,5.009,1748,5.009,1749,5.009,1750,5.009,1751,5.009,1752,5.009]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[119,2.661,480,4.872]],["keywords//docs/platform/linode-images/",[480,4.801,1753,8.566]],["toc//docs/platform/linode-images/",[63,3.16,120,2.713,480,6.658,1488,7.158,1754,8.965]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[21,1.345,47,1.214,91,1.112,232,2.589,1572,3.721,1755,5.368]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[21,1.535,47,1.386,1652,4.923,1755,6.124]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[5,1.027,21,1.588,26,0.082,47,1.893,51,0.42,63,2.571,95,2.207,142,2.642,272,2.706,446,3.361,718,2.19,1755,9.368]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[26,0.053,28,0.674,784,3.427,1221,4.774,1316,5.69,1317,5.368]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[21,1.134,46,2.249,47,1.024,168,2.675,474,2.724,1207,3.136,1221,4.024,1222,4.024]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[22,1.448,26,0.083,32,1.77,45,0.891,46,2.564,47,1.167,63,2.093,95,1.797,142,2.152,216,3.915,225,1.536,272,2.204,310,2.646,332,1.457,351,2.312,390,1.634,440,4.742,474,3.106,669,3.329,1221,8.576]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[5,0.938,659,5.526,1071,5.526,1497,5.146,1756,5.786]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1497,5.005,1756,5.627,1757,4.523,1758,5.627,1759,5.627]],["toc//docs/applications/messaging/using-weechat-for-irc/",[4,1.161,5,0.833,6,1.583,26,0.05,28,0.407,33,0.87,34,0.879,45,0.887,51,0.215,59,2.165,65,0.599,91,0.672,137,2.116,157,1.198,159,1.049,170,3.428,172,3.438,173,3.438,174,1.901,182,1.612,363,3.559,392,1.299,455,2.345,478,3.897,529,2.093,539,2.279,570,1.935,639,3.514,660,1.449,683,3.098,694,1.989,695,1.797,728,2.981,752,2.461,1069,2.981,1281,2.14,1326,1.952,1756,8.801,1757,2.607,1760,2.554,1761,3.438,1762,3.734,1763,5.443,1764,3.734,1765,5.443,1766,3.734,1767,3.734]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[26,0.061,91,1.3,357,3.158,1768,6.275]],["keywords//docs/applications/messaging/install-znc-debian/",[1768,5.627,1769,6.478,1770,6.478,1771,6.478,1772,6.478]],["toc//docs/applications/messaging/install-znc-debian/",[16,3.085,26,0.063,33,1.736,34,1.753,51,0.429,182,3.215,187,3.729,247,4.545,697,2.79,786,2.804,806,3.825,1768,8.483,1773,7.447,1774,7.447]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[5,1.018,224,4.19,772,4.762,776,2.581]],["keywords//docs/email/using-google-apps-for-email/",[1775,7.735,1776,7.735,1777,7.735]],["toc//docs/email/using-google-apps-for-email/",[17,1.857,402,4.362,498,5.693,907,5.4,1026,7.345,1736,7.631]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[4,2.246,51,0.416,644,4.24,1436,4.294]],["keywords//docs/networking/linux-static-ip-configuration/",[663,4.658,664,6.176,1436,4.598]],["toc//docs/networking/linux-static-ip-configuration/",[4,1.846,28,0.913,51,0.342,90,1.804,91,1.069,157,1.906,159,2.353,164,3.164,182,2.564,232,2.488,397,0.859,421,3.788,455,3.73,663,3.576,672,2.488,771,2.974,939,4.239,942,4.742,1034,2.503,1326,3.106,1372,5.159,1436,3.53,1521,3.676,1688,4.927,1778,5.939]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[28,0.628,58,1.912,63,2.032,1334,4.602,1390,4.213,1716,2.488,1779,4.453]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[269,0.636,270,1.184,927,2.704,1334,3.679,1390,3.367,1394,4.002,1506,3.679,1779,3.559,1780,3.037,1781,4.607]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[2,3.463,17,1.693,26,0.09,32,1.375,45,0.693,51,0.578,94,1.791,95,1.396,104,2.274,130,1.386,149,1.612,259,3.294,272,1.712,273,2.07,286,2.459,288,2.645,351,1.274,533,2.991,543,3.685,718,1.386,769,2.043,772,3.042,800,2.256,907,2.709,927,2.709,1390,5.09,1779,6.479,1782,4.615,1783,4.249,1784,4.615]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[91,0.972,232,2.263,269,0.745,270,1.387,392,1.878,1255,4.48,1572,3.251,1785,4.48]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[269,0.894,270,1.665,1090,5.627,1178,2.501,1260,5.965]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[16,3.294,26,0.068,51,0.587,269,1.098,270,2.89,517,6.143,1255,8.454,1785,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[20,3.775,32,1.985,45,1,91,1.199,93,4.557]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[20,3.671,21,1.41,22,1.579,91,1.166,1524,5.965]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[5,0.967,20,6.826,26,0.058,51,0.396,65,1.101,149,2.399,182,2.964,228,3.305,332,1.685,347,4.25,961,4.25,962,3.658,963,3.1,1786,6.866]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[26,0.057,51,0.384,91,1.199,855,5.146,1787,6.661]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[21,1.535,91,1.269,855,5.447,1338,6.124]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[21,1.813,26,0.089,51,0.605,397,1.204,718,2.501,855,8.107,1361,1.239]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[5,0.761,51,0.311,59,3.132,65,0.866,777,2.289,1066,2.033,1068,3.947,1658,3.559]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[776,2.315,777,2.747,1066,2.439,1068,4.735,1652,4.523]],["toc//docs/email/postfix/postfix-smtp-debian7/",[3,1.683,22,1.356,26,0.047,35,2.909,45,1.199,51,0.539,65,0.892,90,1.69,130,1.671,224,3.227,332,1.365,495,3.494,718,1.671,772,3.667,963,3.608,1066,3.522,1067,4.615,1068,4.067,1069,4.442,1070,5.123,1071,4.615,1171,4.175,1788,4.298,1789,5.564,1790,5.564]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[26,0.067,51,0.455,1791,6.853]],["keywords//docs/applications/cloud-storage/dropbox/",[28,0.568,91,0.937,157,1.672,159,1.464,206,3.224,608,4.796,1338,4.524,1791,4.524]],["toc//docs/applications/cloud-storage/dropbox/",[26,0.08,51,0.544,90,2.869,693,6.904,1791,8.204]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[4,2.071,104,3.282,728,5.319,1792,5.786,1793,5.526]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[254,3.299,1534,4.861,1794,6.478,1795,6.478,1796,6.478]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[4,2.472,28,0.867,91,1.431,104,3.917,157,2.552,159,2.235,728,6.349,1326,4.158,1521,4.922,1535,4.994,1792,6.907,1793,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1039,3.82]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[65,1.158,157,2.318,769,3.198,1797,6.652]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[157,1.923,769,2.653,1798,5.992,1799,4.379,1800,4.496,1801,5.992]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[850,0.477]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[91,1.037,119,1.764,392,2.005,639,3.426,799,1.668,1108,3.47,1474,4.602]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[91,1.003,665,2.499,896,3.554,1802,4.623,1803,5.573,1804,5.131,1805,5.131]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[4,2.529,26,0.088,90,2.471,119,2.49,170,4.718,174,4.143,182,3.512,187,4.074,1802,8.578]],["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/",[28,0.589,119,1.653,392,1.878,639,3.21,799,1.562,1108,3.251,1474,4.312,1716,2.331]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[28,0.653,665,2.687,1780,3.95,1802,4.971,1804,5.517,1805,5.517]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[4,2.529,26,0.088,90,2.471,119,2.49,170,4.718,174,4.143,182,3.512,187,4.074,1802,8.578]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[850,0.477]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[5,0.871,28,0.674,98,4.517,435,4.517,1111,4.637,1716,2.668]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[28,0.769,432,6.124,435,5.154,1716,3.044]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[4,2.572,26,0.05,51,0.337,65,0.936,98,7.023,110,2.419,119,1.788,170,4.798,174,4.213,182,3.572,332,1.433,363,4.982,435,8.063,639,4.918,641,4.269,658,3.471]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[17,1.247,45,0.928,159,1.737,719,2.93,1086,3.464,1806,5.368]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[17,1.163,45,0.865,91,1.037,232,2.415,719,2.733,1086,3.231,1572,3.47]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[17,1.163,28,0.628,45,0.865,719,2.733,1086,3.231,1716,2.488,1811,2.96]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[103,5.421,116,5.28,1298,5.156,1812,6.652]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[28,0.568,91,0.937,116,3.807,157,1.672,159,1.464,332,1.278,1298,3.717,1812,4.796]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[26,0.068,28,0.867,62,3.498,91,1.431,116,5.812,157,2.552,159,2.235,169,4.726,204,3.639,332,1.951,786,2.994,1813,7.952]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[26,0.057,28,0.726,777,2.824,992,4.248,1716,2.876]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[21,1.003,28,0.502,503,3.559,776,1.646,777,1.953,1066,1.735,1388,4.002,1593,2.431,1716,1.989,1814,2.851]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[16,3.151,26,0.065,45,1.142,51,0.438,90,3.008,340,2.783,371,5.43,503,7.651,718,2.285,1388,6.608,1814,6.13]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[850,0.477]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[45,0.81,130,1.622,225,1.397,269,1.08,390,1.486,1315,4.972,1815,5.4]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[28,0.502,91,0.829,130,1.383,157,1.479,159,1.295,1044,2.234,1326,2.409,1515,4.242,1521,2.851,1816,4.607]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[19,3.218,28,0.658,45,1.272,51,0.348,91,1.087,130,2.544,131,2.864,225,2.192,259,4.311,269,0.834,273,2.709,316,4.667,372,4.054,390,2.332,416,3.687,478,3.982,629,4.311,694,3.218,890,4.667,1044,2.93,1809,5.012,1817,5.562]],["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/",[5,0.812,17,1.163,49,2.458,159,1.62,337,2.675,1806,5.006,1818,4.453]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[49,2.763,159,1.821,337,3.006,1806,5.627,1818,5.005]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[26,0.068,49,3.392,51,0.458,54,2.803,83,4.726,335,5.337,337,3.69,348,4.197,669,4.457,1818,7.873,1819,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[5,0.812,17,1.163,28,0.628,49,2.458,337,2.675,1716,2.488,1818,4.453]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[28,0.653,49,2.555,337,2.78,570,3.105,1716,2.587,1818,4.629]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[26,0.068,49,3.392,51,0.458,54,2.803,83,4.726,335,5.337,337,3.69,348,4.197,669,4.457,1818,7.873,1819,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[850,0.477]],["title//docs/platform/billing-and-payments/",[1046,6.354,1048,6.522]],["keywords//docs/platform/billing-and-payments/",[1046,6.261,1048,6.428]],["toc//docs/platform/billing-and-payments/",[19,2.366,38,2.71,58,2.243,114,3.332,119,2.507,130,1.333,184,3.684,204,2.032,225,1.149,267,2.748,397,0.978,401,2.674,422,2.412,446,2.046,487,2.517,507,3.332,629,3.169,660,1.723,1043,4.626,1045,3.857,1046,6.695,1048,5.075,1098,3.246,1130,3.857,1361,0.661,1734,3.684,1820,6.227,1821,4.44,1822,4.44,1823,3.43,1824,4.089,1825,4.44,1826,3.43,1827,3.857,1828,5.874,1829,3.684]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[91,1.199,93,4.557,265,5.526,654,4.471,1830,5.786]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1830,7.44,1831,8.566]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[3,2.119,16,3.883,35,3.662,51,0.403,65,1.503,83,4.162,187,4.695,351,1.934,669,5.255,672,2.934,718,2.103,1830,9.181]],["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/",[32,1.718,45,0.865,119,1.764,609,5.307,665,2.585,1107,3.304,1832,5.764]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[49,2.763,1107,5.098,1833,5.965,1834,6.478]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[4,2.417,32,2.318,45,1.167,65,1.247,170,4.51,174,3.96,363,4.682,420,5.835,440,6.209,639,4.622,718,2.335,1535,4.884,1833,7.16]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[95,2.63,515,6.941]],["keywords//docs/platform/package-mirrors/",[28,0.533,91,0.88,95,1.479,119,1.497,159,1.374,294,3.777,295,2.253,515,3.904,1835,4.502]],["toc//docs/platform/package-mirrors/",[28,0.867,45,1.78,91,1.431,95,2.406,159,2.235,351,3.105,515,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[47,1.214,91,1.112,232,2.589,474,3.232,1206,3.292,1572,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[16,2.959,21,1.555,26,0.091,45,1.072,47,1.867,95,2.162,110,2.959,272,2.651,340,2.613,423,1.759,482,4.573,721,5.385]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.579,20,2.878,26,0.043,47,0.998,91,0.914,270,1.305,288,2.911,293,2.706,1187,2.586]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[21,1.588,22,1.778,26,0.082,33,1.7,34,1.716,47,1.433,51,0.42,63,2.571,65,1.729,193,2.095,270,1.874,373,5.092,1178,2.816]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[65,1.068,91,1.199,232,2.791,1187,3.392,1572,4.011]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[21,1.495,22,1.674,26,0.089,45,1.03,47,1.818,51,0.396,63,2.42,65,1.484,193,1.972,225,1.776,270,1.764,390,1.889,423,1.69,718,2.062,1178,2.651]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[110,2.992,491,4.762,840,4.537,1088,5.581]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[28,0.706,91,1.166,570,3.357,840,4.069,1088,5.005]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[5,0.537,16,1.58,26,0.032,33,0.889,34,0.898,51,0.562,57,2.723,83,2.267,90,1.159,119,1.168,122,3.313,129,2.115,193,1.096,242,2.56,335,2.56,338,1.836,339,2.328,415,2.609,531,2.433,722,2.962,840,6.649,1088,8.416,1089,4.395,1098,2.788,1357,3.046,1637,4.395,1838,3.815,1839,4.988,1840,3.165,1841,3.815,1842,3.815,1843,3.815,1844,4.395,1845,3.313,1846,3.815]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[159,1.872,227,1.927,1034,2.808,1066,2.508,1847,5.786]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[227,2.04,1066,2.655,1381,4.428,1847,6.124]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[26,0.073,37,4.947,90,2.591,303,6.235,326,6.59,585,7.076,718,2.562,1847,7.409,1848,6.088]],["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/",[28,0.628,47,1.133,474,3.014,1194,2.839,1206,3.071,1716,2.488,1811,2.96]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[16,3.151,21,1.656,26,0.084,33,1.773,34,1.79,47,1.946,110,3.151,340,2.783,482,4.766,721,5.613]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[26,0.057,51,0.384,159,1.872,1034,2.808,1849,3.483]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[21,1.535,159,1.982,243,5.032,1849,3.687]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[26,0.088,33,1.896,34,1.915,51,0.469,90,2.471,334,5.68,697,3.048,1849,5.944]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[162,4.203]],["keywords//docs/applications/containers/what-is-docker/",[28,0.706,159,1.821,162,2.814,164,3.451,1716,2.797]],["toc//docs/applications/containers/what-is-docker/",[26,0.063,28,0.812,47,1.463,159,2.093,162,3.235,222,5.315,223,5.199,320,4.909,397,1.077,851,5.443,1034,3.139,1361,1.108,1716,3.215,1850,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[850,0.477]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[26,0.057,47,1.309,91,1.199,232,2.791,1572,4.011]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[47,1.024,91,0.937,337,2.417,713,2.587,1651,4.524,1652,3.637,1681,4.524,1851,5.209]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[17,1.219,26,0.083,45,0.907,47,2.085,56,2.447,91,1.087,94,2.344,120,1.828,130,1.814,131,2.864,227,1.748,295,2.784,332,1.482,357,2.641,423,1.487,718,1.814,799,1.748,858,3.878,1049,2.286,1852,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/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,1797,5.69]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1853,7.735,1854,5.976,1855,6.417]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[5,1.027,21,2.497,26,0.062,51,0.555,347,4.514,351,2.014,397,1.054,961,4.514,962,3.885,963,3.293,1361,1.085,1692,5.472]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[850,0.477]],["title//docs/platform/api/api-key/",[180,5.73,262,4.005]],["keywords//docs/platform/api/api-key/",[262,3.564,1856,7.735,1857,7.122]],["toc//docs/platform/api/api-key/",[401,6.186,771,5.144]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[119,2.661,492,6.204]],["keywords//docs/platform/linode-cli/",[1857,6.492,1858,7.051,1859,7.051,1860,7.051]],["toc//docs/platform/linode-cli/",[4,1.58,5,0.716,16,3.678,26,0.064,28,0.816,91,1.347,119,1.555,130,1.526,149,1.775,157,1.631,170,4.339,180,3.35,214,2.633,262,2.342,363,4.505,402,2.409,447,3.145,487,2.88,492,6.338,547,4.216,639,4.447,669,2.848,1169,3.41,1817,4.679,1861,5.082,1862,5.082,1863,5.082]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[21,1.573,26,0.061,159,2.031,1034,3.045]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1475,2.871,1476,3.478,1477,3.478,1478,3.613,1479,3.108]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[5,0.851,17,1.71,21,2.521,22,1.473,26,0.051,33,1.408,34,1.422,65,0.969,110,2.502,126,3.025,149,2.11,347,3.739,587,3.982,957,3.982,961,3.739,962,4.514,963,2.727,998,4.218,1077,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[260,5.581,305,3.679,499,2.558,1864,6.652]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[305,3.939,499,2.739,1864,7.122]],["toc//docs/networking/dns/previewing-websites-without-dns/",[3,3.231,4,2.221,90,2.17,130,2.146,170,4.144,174,3.638,225,2.762,363,4.302,639,4.247,644,4.194,661,5.968,663,4.302]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[21,1.573,26,0.061,91,1.3,232,3.027]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.221,20,2.225,21,0.855,22,0.957,91,0.707,267,2.43,1475,2.588,1476,3.135,1477,3.135,1478,3.257,1479,2.802,1651,3.41,1652,2.741]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[26,0.053,28,0.674,91,1.112,92,3.021,293,3.292,1865,4.411]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[28,0.607,91,1.003,896,3.554,1865,3.977,1866,5.573,1867,4.84,1868,5.573]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[26,0.061,91,1.3,232,3.027,1865,5.156]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[91,1.269,1652,4.923,1865,5.032,1867,6.124]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[850,0.477]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[26,0.061,28,0.787,1716,3.119,1865,5.156]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[28,0.769,1716,3.044,1865,5.032,1867,6.124]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[159,1.737,269,0.853,270,1.588,392,2.149,1034,2.605,1258,3.427]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[269,0.719,270,1.338,337,2.417,1258,2.889,1700,2.452,1869,3.563,1870,3.563,1871,4.524]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[26,0.073,33,1.988,34,2.007,51,0.491,269,1.471,270,2.737,1258,4.73]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[91,1.037,232,2.415,269,0.796,270,1.481,392,2.005,1258,3.196,1572,3.47]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[269,0.769,270,1.432,1258,3.09,1700,2.623,1869,3.812,1870,3.812,1871,4.84]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[26,0.068,33,1.854,34,1.871,51,0.458,269,1.407,270,2.618,340,2.909,1258,4.41,1872,5.967,1873,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[850,0.477]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[21,1.45,26,0.057,91,1.199,232,2.791,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[21,1.213,91,1.003,243,3.977,1849,2.914,1874,4.623,1875,4.623,1876,4.623]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[26,0.057,51,0.384,91,1.199,293,3.549,1849,3.483]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[21,1.003,91,0.829,243,3.288,270,1.184,896,2.938,1849,2.409,1874,3.822,1875,3.822,1876,3.822,1877,4.607]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[65,1.158,157,2.318,769,3.198,1878,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1799,5.154,1800,5.291,1879,7.051,1880,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[65,1.068,159,1.872,193,1.913,269,0.92,1034,2.808]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[159,1.684,269,0.827,1036,4.784,1713,3.95,1881,3.883,1882,5.517]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[26,0.091,33,1.665,34,1.681,51,0.412,56,3.848,225,1.848,269,1.571,273,3.204,390,1.966,482,3.439,1492,5.52]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[21,1.718,224,4.576,931,5.397]],["keywords//docs/platform/longview/longview-app-for-mysql/",[21,1.684,67,4.598,931,5.291]],["toc//docs/platform/longview/longview-app-for-mysql/",[21,1.769,22,1.633,26,0.037,28,0.478,38,2.676,51,0.468,67,2.606,91,0.789,115,3.13,131,2.079,182,3.929,254,2.233,315,2.458,325,3.982,397,0.634,422,2.382,447,2.714,800,2.143,840,2.754,1054,3.501,1080,6.099,1293,3.501,1296,3.13,1444,3.638,1461,7.549,1883,4.038,1884,3.809,1885,4.385,1886,4.385,1887,3.501,1888,3.638,1889,4.038,1890,4.385,1891,3.638]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[47,1.551,224,4.576,931,5.397]],["keywords//docs/platform/longview/longview-app-for-nginx/",[47,1.386,67,4.191,931,4.823,1892,7.051]],["toc//docs/platform/longview/longview-app-for-nginx/",[26,0.045,28,0.57,38,3.194,47,1.775,51,0.44,65,0.839,67,3.11,91,0.942,115,5.456,131,2.481,182,2.259,254,2.664,315,2.933,325,3.11,395,2.815,409,4.178,422,2.843,447,3.239,647,5.456,660,2.031,800,2.558,1293,4.178,1444,4.341,1461,4.341,1887,4.178,1888,4.341,1891,4.341,1893,4.545,1894,4.545,1895,4.341]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[224,4.576,269,1.089,931,5.397]],["keywords//docs/platform/longview/longview-app-for-apache/",[67,4.191,269,0.973,931,4.823,1896,7.051]],["toc//docs/platform/longview/longview-app-for-apache/",[26,0.04,28,0.51,38,2.854,51,0.405,65,0.75,67,2.78,91,0.842,115,5.02,131,2.217,254,2.381,269,1.167,278,2.516,315,2.621,325,2.78,340,1.71,395,2.516,409,3.734,422,2.541,447,2.894,647,3.338,660,1.815,800,2.286,1293,3.734,1444,5.835,1461,3.88,1621,4.306,1724,4.306,1883,4.306,1887,3.734,1888,3.88,1889,4.306,1891,3.88,1893,4.062,1894,4.062,1895,3.88,1897,4.676,1898,4.062,1899,4.676]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[65,1.265,769,3.493,1521,4.884]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[769,3.424,1521,4.787,1900,7.122]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.664,65,1.342,193,1.706,225,1.536,269,0.82,270,1.526,390,1.634,423,1.462,1901,5.159]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[850,0.477]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[119,2.211,225,1.869,265,5.993,1534,5.421]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1534,5.804,1902,7.735,1903,7.735]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[26,0.053,31,3.767,32,1.864,33,1.458,34,1.472,54,2.205,61,2.787,62,2.752,65,1.003,119,1.915,142,2.267,193,1.797,288,3.586,305,4.421,402,4.117,595,7.203,695,3.011,769,2.769,776,2.235,1638,3.872,1839,5.19]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[65,1.068,91,1.199,232,2.791,769,2.949,1572,4.011]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[21,0.948,91,0.784,269,0.601,270,1.119,769,1.928,1514,3.613,1652,3.041,1799,3.184,1904,4.355,1905,3.783,1906,4.355]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[17,1.442,21,2.069,22,1.742,26,0.081,33,1.665,34,1.681,51,0.615,225,1.848,235,3.315,269,0.986,270,1.836,390,1.966,695,3.439]],["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/",[4,2.071,26,0.057,288,3.818,769,2.949,1326,3.483]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[21,0.899,269,0.57,270,1.061,769,1.828,1326,2.159,1506,3.298,1907,4.13,1908,4.13,1909,4.13,1910,4.13,1911,4.13,1912,3.587]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,2.634,17,1.219,21,1.844,22,1.473,26,0.083,33,1.408,34,1.422,51,0.564,65,0.969,203,2.488,225,1.563,235,2.803,269,1.17,270,2.177,390,1.662,695,2.907,769,2.674,1326,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/",[28,0.787,119,2.211,1291,4.294,1716,3.119]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[28,0.769,1291,4.191,1716,3.044,1913,6.492]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[3,1.927,12,2.976,26,0.075,32,1.898,45,0.956,51,0.58,65,1.021,130,1.913,142,2.308,187,3.189,286,3.393,351,1.759,397,0.921,948,5.085,950,3.942,1291,5.983,1361,0.948,1914,6.369]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[850,0.477]],["title//docs/development/version-control/introduction-to-version-control/",[169,4.69,175,4.632,486,3.741]],["keywords//docs/development/version-control/introduction-to-version-control/",[168,3.622,1222,5.447,1915,7.051,1916,7.051]],["toc//docs/development/version-control/introduction-to-version-control/",[5,0.949,26,0.057,32,2.007,35,3.522,45,1.011,110,2.789,168,3.459,169,6.159,192,3.775,351,1.86,486,4.913,491,4.439,1917,6.735,1918,7.932,1919,6.735]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[91,1.112,232,2.589,269,0.853,474,3.232,1206,3.292,1572,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1207,4.246,1523,4.364,1920,6.124,1921,5.291]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[21,1.45,26,0.057,28,0.726,1716,2.876,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[21,0.948,28,0.475,243,3.108,1194,2.146,1780,2.871,1811,2.237,1849,2.277,1874,3.613,1875,3.613,1876,3.613,1922,4.01]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[21,1.45,26,0.057,28,0.726,784,3.694,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[21,0.948,28,0.475,243,3.108,1194,2.146,1211,2.923,1811,2.237,1849,2.277,1874,3.613,1875,3.613,1876,3.613,1922,4.01]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[28,0.674,65,0.991,193,1.775,1173,3.772,1716,2.668,1811,3.174]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[713,3.841,1173,4.721,1175,7.122]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[17,1.041,26,0.044,28,0.562,45,0.774,51,0.516,56,2.088,195,3.983,196,3.769,202,6.392,204,2.36,225,2.552,273,2.313,390,2.715,392,1.793,423,1.269,669,4.239,1173,4.616,1176,7.779,1177,4.478,1519,4.117,1785,4.277,1923,4.747]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[65,0.991,91,1.112,193,1.775,232,2.589,269,0.853,1572,3.721]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[91,1.078,269,0.827,1572,3.608,1652,4.183,1882,5.517,1924,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[26,0.091,33,1.665,34,1.681,51,0.412,56,3.848,225,1.848,269,1.571,273,4.262,390,1.966,482,3.439]],["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/",[28,0.589,91,0.972,232,2.263,332,1.325,741,2.726,905,3.444,1716,2.331,1811,2.774]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[28,0.568,91,0.937,469,2.699,672,2.183,741,2.63,1652,3.637,1716,2.249,1913,4.796]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[26,0.061,45,0.721,51,0.277,65,0.77,75,3.354,119,1.47,128,3.354,182,3.099,187,4.302,262,3.959,332,1.179,336,3.017,439,2.893,446,2.214,469,4.452,539,2.932,660,1.864,741,3.624,771,3.594,786,2.702,799,1.39,959,3.354,1001,3.429,1002,3.429,1009,3.429,1105,3.114,1107,2.754,1297,4.423,1925,3.512,1926,3.605]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[850,0.477]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,1.45,800,3.256,1066,2.508,1573,5.786,1593,3.516]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,1.684,1066,2.913,1593,4.082]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,0.888,32,1.216,45,0.612,51,0.235,54,2.234,62,2.788,119,1.249,149,2.214,170,2.366,247,2.49,278,2.195,340,1.492,348,2.153,362,2.366,390,1.744,392,1.419,402,3.005,531,2.602,697,1.529,698,2.788,702,3.544,793,2.982,800,1.994,907,2.395,957,2.689,1027,4.872,1066,3.298,1068,2.982,1296,2.912,1593,4.623,1597,2.49,1927,3.544,1928,3.757,1929,4.08,1930,4.08,1931,4.08,1932,4.08,1933,4.08]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[26,0.053,91,1.112,269,0.853,293,3.292,474,3.232,1206,3.292]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1207,4.246,1523,4.364,1920,6.124,1921,5.291]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[26,0.066,33,1.813,34,1.83,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[247,4.816,254,4.018,641,5.767]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[91,1.003,247,3.401,254,2.838,332,1.367,641,4.073,1572,3.356,1934,5.573]],["toc//docs/security/encryption/full-disk-encryption-xen/",[17,1.386,26,0.058,32,2.046,51,0.533,91,1.665,110,2.844,247,4.19,254,4.712,340,2.511,491,4.526,533,4.45,641,5.019,654,4.608,1935,6.322,1936,6.322,1937,6.866]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[850,0.477]],["title//docs/platform/automating-server-builds/",[36,4.632,65,1.265,198,3.984]],["keywords//docs/platform/automating-server-builds/",[254,3.299,757,4.861,1540,4.623,1938,6.478,1939,6.478]],["toc//docs/platform/automating-server-builds/",[19,3.658,36,4.03,58,2.277,65,1.101,119,3.203,130,2.062,198,3.467,254,3.496,423,1.69,625,5.019,644,4.03,663,4.134,818,4.697,930,4.794,1675,5.482,1676,5.482,1940,6.866]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[65,1.265,392,2.744,777,3.345]],["keywords//docs/email/running-a-mail-server/",[1381,4.428,1677,5.63,1941,7.051,1942,7.051]],["toc//docs/email/running-a-mail-server/",[26,0.032,48,2.515,51,0.22,58,1.265,65,1.638,150,4.395,187,3.01,198,1.926,242,2.56,296,2.723,315,2.138,392,1.327,430,3.165,446,1.758,498,4.606,499,2.129,697,1.429,777,4.728,786,1.436,793,2.788,799,1.104,1043,2.609,1271,2.947,1285,3.512,1361,0.568,1409,2.609,1561,4.291,1658,2.515,1736,3.165,1839,3.165,1840,3.165,1936,3.512,1943,2.862,1944,3.512,1945,6.012,1946,6.012,1947,3.815]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.573,776,2.581,1066,2.72,1593,3.812]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.064,28,0.533,65,0.784,91,0.88,776,1.747,777,2.073,1066,1.841,1593,2.58,1948,4.889]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.293,26,0.071,33,1.384,34,1.398,40,2.613,51,0.342,90,2.543,95,1.797,126,2.974,402,3.97,499,2.103,663,5.041,694,4.46,697,2.225,776,3.465,786,2.236,1066,2.236,1593,3.134,1597,5.11]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[91,1.3,232,3.027,1044,3.504,1572,4.35]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1572,4.246,1949,6.492,1950,6.492,1951,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[26,0.057,31,4.055,32,2.007,58,2.234,91,1.212,104,3.318,110,2.789,119,2.061,130,2.022,142,2.44,232,2.822,380,4.806,531,4.295,592,4.23,752,4.439,800,3.292,1027,3.459,1044,4.429,1573,5.849]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[850,0.477]],["title//docs/security/linode-manager-security-controls/",[119,2.211,120,2.186,332,1.773,486,3.425]],["keywords//docs/security/linode-manager-security-controls/",[332,1.59,955,4.735,963,2.925,1157,5.005,1952,6.478]],["toc//docs/security/linode-manager-security-controls/",[51,0.241,61,1.861,62,1.837,126,2.091,149,1.459,180,2.753,183,3.134,199,1.621,200,3.846,203,1.72,204,1.912,226,5.272,228,2.01,262,1.925,332,1.025,334,2.916,340,2.36,348,4.681,358,3.335,371,2.981,421,4.116,487,2.367,644,3.788,660,1.621,663,3.886,698,1.837,771,2.091,776,1.493,795,6.853,944,2.981,963,1.886,1004,3.465,1028,3.053,1117,6.542,1157,3.227,1953,4.177,1954,4.177]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[31,4.751,32,2.352,40,3.471]],["keywords//docs/security/backups/backing-up-your-data/",[19,4.738,37,3.757,1955,5.173,1956,6.478]],["toc//docs/security/backups/backing-up-your-data/",[4,1.764,6,1.503,8,2.831,19,5.937,21,0.772,25,2.475,31,3.416,32,2.415,37,2.056,45,0.851,58,1.176,65,0.91,98,2.592,99,2.831,170,2.056,171,2.298,174,1.805,254,1.805,264,1.907,325,3.372,345,2.337,357,1.55,363,2.135,447,2.195,532,5.478,548,2.941,612,2.831,639,2.107,826,2.739,1409,2.425,1788,2.739,1895,2.941,1955,7.078,1957,3.265,1958,2.661,1959,4.928,1960,3.265,1961,2.941,1962,3.546,1963,3.546,1964,3.546,1965,3.546]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[5,1.224,931,5.946]],["keywords//docs/platform/longview/longview/",[931,5.291,1966,7.735,1967,7.735]],["toc//docs/platform/longview/longview/",[26,0.058,40,3.004,54,1.585,79,4.141,130,1.35,180,2.964,187,4.134,224,2.608,254,2.29,257,2.824,262,3.147,294,3.474,315,2.521,338,2.164,339,2.745,351,1.242,447,2.783,482,2.164,672,1.884,701,3.474,800,2.198,898,3.287,907,2.64,929,3.591,931,7.139,1095,3.287,1473,3.906,1898,3.906,1968,4.497,1969,4.497,1970,4.497,1971,4.497,1972,4.497,1973,4.497,1974,3.731,1975,3.906]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[119,2.661,120,2.63]],["keywords//docs/platform/linode-managed/",[955,6.261,1976,8.566]],["toc//docs/platform/linode-managed/",[26,0.063,35,2.619,45,0.752,51,0.289,58,3.729,110,2.075,119,1.533,126,2.508,149,1.75,227,1.449,262,2.308,401,3.016,421,4.722,439,3.016,491,3.302,665,2.247,694,4.692,962,2.669,1105,3.246,1296,5.284,1845,4.351,1894,4.351,1927,4.351,1974,4.156,1977,4.612,1978,5.009,1979,5.009]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[4,1.921,26,0.053,65,0.991,628,3.825,665,2.772,1980,5.368]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[570,4.008,665,3.469,1980,6.719]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[4,2.699,26,0.074,28,0.682,91,1.126,98,4.573,119,1.915,131,2.966,142,2.267,170,3.628,174,3.185,182,2.701,338,3.011,363,3.767,430,5.19,548,5.19,639,3.718,665,2.806,1326,3.271,1980,9.355]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[28,0.674,269,0.853,1182,3.464,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[29,3.299,1982,6.478,1983,6.478,1984,5.965,1985,5.173]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[5,1.263,26,0.076,90,2.723,269,1.238,718,2.692,1182,6.158]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[26,0.053,28,0.674,1281,3.542,1716,2.668,1986,3.673,1987,4.005]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[570,2.387,948,3.679,1780,3.037,1986,2.738,1988,3.367,1989,3.037,1990,3.037,1991,2.986,1992,2.986,1993,4.607]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[26,0.074,45,1.312,51,0.504,87,5.264,338,4.207,718,2.625,1986,6.429]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[850,0.477]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[5,0.761,28,0.589,47,1.061,55,2.163,63,1.903,224,3.132,1314,2.798,1716,2.331]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[28,0.568,47,1.024,55,2.087,812,2.675,1314,2.699,1994,5.209,1995,5.209,1996,4.796]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[26,0.068,47,1.563,51,0.587,65,1.275,199,3.086,204,3.639,397,1.15,718,2.388,1314,5.281,1361,1.183]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[850,0.477]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[28,0.628,59,3.343,63,2.032,65,0.924,777,2.444,1716,2.488,1997,3.426]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1381,3.763,1780,3.95,1997,3.561,1998,5.992,1999,4.496,2000,4.496]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[26,0.066,45,1.167,51,0.579,58,2.579,90,2.362,95,2.353,272,2.885,278,4.183,423,1.914,777,4.259,1997,4.622]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[28,0.589,420,4.052,1716,2.331,1811,2.774,1981,3.095,2001,3.77,2002,3.694,2003,3.295]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[270,1.54,1700,2.82,1780,3.95,2003,3.657,2004,4.379,2005,4.971]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[26,0.084,51,0.354,94,2.385,95,1.86,130,1.846,169,3.653,227,1.778,332,1.508,357,2.687,581,4.387,660,2.385,718,1.846,799,1.778,858,2.813,1049,2.326,2003,7.107,2006,5.66,2007,6.147]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[850,0.477]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[28,0.628,63,2.032,65,0.924,193,1.655,214,2.987,1716,2.488,2008,3.196]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[269,0.894,1173,3.954,2008,3.593,2009,4.735,2010,4.623]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[49,4.901,273,3.735,340,3.046,400,4.83,402,3.949,765,5.49,1173,6.405]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[28,0.726,58,2.209,227,1.927,1201,3.959,1716,2.876]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[337,2.021,371,3.108,570,2.257,665,1.953,1068,3.184,1201,2.589,1359,3.041,1780,2.871,1944,4.01,2011,4.355,2012,4.01]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[6,3.029,26,0.061,51,0.412,61,3.184,62,3.143,193,2.052,331,3.882,371,6.782,660,2.773,776,2.553,1201,5.648,1359,4.988,1658,4.71,1757,4.988,2013,6.579]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.628,776,2.06,1194,2.839,1716,2.488,1811,2.96,1981,3.304,2014,3.426]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[2014,3.851,2015,6.478,2016,6.478,2017,4.432,2018,4.861]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.06,45,1.051,340,2.561,392,3.261,397,1.012,423,1.724,718,2.103,944,4.998,963,3.162,992,4.466,1361,1.042,1638,4.334,1814,4.334,2014,6.283,2019,5.118]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[28,0.628,776,2.06,784,3.196,1194,2.839,1317,5.006,2014,3.426,2020,5.764]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[2014,3.851,2017,4.432,2018,4.861,2021,6.478,2022,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[26,0.062,45,1.095,340,2.667,392,3.35,423,1.795,718,2.19,944,5.205,963,3.293,992,4.651,1638,4.514,1814,4.514,2014,6.411,2019,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1039,3.82]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.589,47,1.061,1178,2.085,1194,2.66,1716,2.331,1811,2.774,1837,2.66,1981,3.095]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[47,1.273,1537,3.803,2023,5.005,2024,5.627,2025,4.523]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[12,2.872,17,1.241,26,0.052,35,4.485,45,0.922,51,0.616,72,3.751,90,1.867,95,1.86,177,5.653,225,1.59,272,2.281,340,2.248,390,1.691,423,1.513,499,2.176,552,3.275,1178,2.373,1433,3.86,1837,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[28,0.554,269,0.701,270,1.305,392,1.766,1194,2.502,1258,2.817,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[269,0.769,270,1.432,1258,3.09,1700,2.623,1869,3.812,1870,3.812,1871,4.84]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[26,0.068,33,1.854,34,1.871,51,0.458,269,1.407,270,2.618,340,2.909,1258,4.41,1872,5.967,1873,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[850,0.477]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[5,0.812,28,0.628,274,3.567,1281,3.304,1987,3.735,2026,3.383,2027,5.764]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1988,3.019,1990,2.722,1991,2.677,1992,2.677,2026,2.424,2028,4.13,2029,4.13,2030,3.099,2031,2.722,2032,2.222,2033,4.13,2034,4.13]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[5,0.931,26,0.056,51,0.381,54,2.329,149,2.308,204,3.024,225,1.709,319,3.879,362,3.832,390,1.818,423,1.627,499,2.34,733,3.832,800,3.23,2026,6.024,2032,3.555,2035,4.958,2036,4.614,2037,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[28,0.726,191,3.516,1716,2.876,1811,3.422,1981,3.818]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[22,1.579,904,3.271,2038,6.478,2039,6.478,2040,4.623]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[26,0.073,40,2.704,51,0.354,94,2.385,120,2.595,131,2.914,142,2.227,191,6.146,205,3.804,234,3.409,264,3.306,351,1.697,392,2.138,428,3.92,529,3.445,1086,3.445,2041,6.121]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1319,3.863,1716,2.876,1811,3.422,1981,3.818]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.049,28,0.628,47,1.133,1194,2.839,1716,2.488,1811,2.96,1981,3.304]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.607,47,1.095,337,2.586,713,2.768,2024,4.84,2044,5.573,2045,5.573]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.1,33,1.632,34,1.648,47,2.218,90,2.127,131,3.32,295,4.32,357,3.061,1697,6.448,2046,7.003]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2047,3.818]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[5,0.675,17,0.968,28,0.523,418,3.347,1716,2.07,1811,2.463,1981,2.748,2051,3.16,2052,3.107,2053,4.415]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[28,0.589,227,1.562,351,1.491,698,2.375,1483,3.095,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[28,0.674,269,0.853,606,3.825,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[55,2.825,269,0.973,606,4.364,1313,3.249]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[26,0.057,33,1.57,34,1.585,51,0.669,54,2.374,222,4.806,223,4.702,269,0.93,310,3.001,399,4.923,812,5.707,1313,3.103,1319,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2054,3.656]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[28,0.607,168,2.862,476,3.356,1837,2.745,2005,4.623,2048,3.356,2054,3.058]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[5,0.715,28,0.554,49,2.166,58,1.685,269,0.701,341,2.234,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[5,0.812,28,0.628,227,1.668,763,4.113,1716,2.488,1958,4.325,2061,4.113]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[28,0.653,1780,3.95,2061,4.276,2062,5.204,2063,4.971,2064,5.992]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[5,0.967,26,0.079,45,1.03,51,0.533,187,3.438,295,3.164,310,3.059,340,2.511,410,4.9,596,4.312,718,2.062,1357,5.482,2061,6.604,2063,5.696,2065,5.304,2066,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[28,0.589,65,0.866,193,1.551,269,0.745,1194,2.66,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[28,0.568,269,0.719,570,2.699,713,2.587,1780,3.434,1811,2.675,1924,4.524,2067,5.209]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[26,0.092,33,1.7,34,1.716,51,0.42,56,3.901,225,1.887,269,1.489,273,3.271,390,2.007,482,3.51,1492,5.634]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[28,0.628,63,2.032,65,0.924,193,1.655,305,2.935,1716,2.488,2068,3.163]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1780,4.27,1881,4.199,2005,5.374,2068,3.555,2069,6.478]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[26,0.058,45,1.03,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,423,1.69,660,3.591,754,5.727,814,6.329,1027,3.527,2068,5.078]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2070,3.775]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2072,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[5,0.871,28,0.674,65,0.991,193,1.775,1716,2.668,2068,3.392]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[665,2.193,1780,3.223,1881,3.169,2005,4.056,2068,2.683,2073,4.889,2074,3.904,2075,4.889,2076,3.574]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[26,0.058,45,1.03,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,423,1.69,660,3.591,754,5.727,814,6.329,1027,3.527,2068,5.078]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[26,0.043,28,0.554,47,0.998,171,3.292,270,1.305,1178,1.961,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[47,1.024,270,1.338,1178,2.011,1537,3.058,1538,3.496,2024,4.524,2077,5.209,2078,5.209]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[28,0.674,65,0.991,1187,3.147,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[21,1.192,22,1.335,26,0.067,28,0.597,45,0.822,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,423,1.348,799,1.585,858,2.506,1049,2.072,1178,2.115]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[28,0.554,120,1.537,530,3.058,776,1.815,1716,2.193,1760,3.474,1811,2.609,1981,2.911,2079,3.1]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[28,0.628,58,1.912,495,3.62,499,2.041,1716,2.488,2081,4.113,2082,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[28,0.653,499,2.122,672,2.51,2082,3.288,2083,5.992,2084,5.992]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[3,2,17,1.334,26,0.056,45,0.992,51,0.519,58,2.192,87,3.979,225,1.709,272,2.452,422,3.59,423,1.627,799,1.912,1414,5.943,2082,6.05,2085,4.614,2086,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[5,0.761,28,0.589,40,2.375,206,3.342,235,2.506,1716,2.331,2087,2.905,2088,3.854]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[28,0.706,904,3.271,2087,3.485,2089,4.623,2090,5.374]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[5,1.367,26,0.083,2087,6.2]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[5,0.675,28,0.523,278,2.579,499,1.698,1194,2.362,1716,2.07,1811,2.463,1981,2.748,2091,2.554,2092,3.28]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[21,1.175,22,1.316,28,0.589,63,1.903,1074,2.934,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[21,1.41,1475,4.27,1780,4.27,2096,5.005,2097,4.735]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[17,1.752,21,2.549,22,1.525,26,0.053,63,2.205,65,1.003,126,3.132,149,2.185,347,3.872,587,4.124,718,1.879,957,4.124,961,3.872,962,4.625,963,2.824,998,4.368,1077,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[21,1.573,26,0.061,28,0.787,784,4.006]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.284,21,0.899,28,0.45,1211,2.772,1475,2.722,1477,3.298,1479,2.947,2098,4.13,2099,4.13,2100,4.13,2101,4.13,2102,4.13]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["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/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,1716,2.331,1811,2.774]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[26,0.065,51,0.438,65,1.588,110,3.151,204,3.482,319,4.466,397,1.1,592,4.778,719,5.53,1361,1.132]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,0.871,22,1.507,28,0.674,46,2.668,1074,3.357,1716,2.668]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[46,2.797,1075,5.173,1076,3.954,1170,4.348,1780,4.27]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[17,2.051,22,2.17,26,0.076,45,0.973,46,4.388,51,0.374,149,2.266,228,3.122,237,4.204,332,1.592,660,2.517,963,2.929,1077,3.718,1081,4.276,2103,5.011,2104,5.011]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[26,0.046,28,0.589,65,0.866,1716,2.331,1811,2.774,1981,3.095,2032,2.905,2105,3.17]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2032,3.223,2105,3.517,2106,5.992,2107,4.496,2108,4.496,2109,4.496]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[5,1.049,26,0.063,51,0.429,65,1.194,295,3.432,296,5.315,340,2.724,499,2.637,694,3.967,799,2.155,2032,4.006,2037,4.826,2105,5.733,2110,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[28,0.674,65,0.991,769,2.736,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[21,1.064,28,0.533,269,0.675,270,1.256,769,2.165,1506,3.904,2111,3.777,2112,4.889,2113,4.889]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[17,1.442,21,2.069,22,1.742,26,0.081,33,1.665,34,1.681,51,0.615,225,1.848,235,3.315,269,0.986,270,1.836,390,1.966,695,3.439]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[65,1.265,227,2.283,1961,6.546]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[107,5.374,227,2.573,893,5.374,1961,5.374]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[5,0.962,26,0.038,51,0.393,95,1.361,99,3.591,104,2.215,110,1.863,119,2.527,120,2.498,126,2.252,130,2.479,227,2.389,351,1.242,491,2.964,531,2.868,535,3.21,661,2.824,698,3.632,776,1.607,799,1.301,826,3.474,930,4.768,931,3.076,1044,2.181,1195,3.731,1351,4.141,1359,3.14,1372,3.906,1675,3.591,1676,3.591,1895,3.731,1957,4.141,2114,4.497]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[65,1.265,227,2.283,2115,6.853]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[227,2.04,1632,7.521,2115,6.124]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[3,1.789,5,0.526,17,1.193,21,1.287,26,0.089,45,0.56,51,0.524,65,0.599,94,1.449,95,1.13,110,3.039,118,2.665,126,2.96,149,2.065,150,4.321,193,1.072,225,0.966,227,1.08,269,0.515,270,1.519,325,2.219,331,2.028,357,1.632,397,0.54,581,2.665,658,2.219,694,1.989,698,1.642,718,1.121,858,3.358,906,2.42,1361,0.556,1898,3.243,2006,3.438,2115,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[850,0.477]],["title//docs/applications/social-networking/dolphin/",[2116,8.404]],["keywords//docs/applications/social-networking/dolphin/",[2116,6.719,2117,6.176,2118,7.122]],["toc//docs/applications/social-networking/dolphin/",[21,1.075,22,1.204,26,0.092,32,1.472,45,0.741,51,0.422,56,2,65,0.792,94,1.917,130,1.483,149,1.725,259,3.525,270,2.244,273,2.215,392,1.718,416,4.471,694,2.631,698,2.173,718,1.483,754,3.057,776,1.765,814,3.378,916,3.61,948,3.944,2116,8.964,2119,4.939]],["deprecated//docs/applications/social-networking/dolphin/",[618,0.696,847,0.637,850,0.087,2118,2.143,2120,0.871,2121,0.871,2122,0.871]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,0.938,22,1.624,120,2.016,402,3.159,1139,4.065]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[21,1.003,22,1.123,500,3.457,1139,2.812,1849,2.409,2123,4.607,2124,4.607,2125,4.607,2126,4.607,2127,4.607]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[17,1.57,21,1.693,22,2.449,120,3.039,149,2.717,203,3.203,402,5.276,500,5.835,2128,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/",[4,2.071,26,0.057,65,1.068,2129,5.786,2130,6.134]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2129,6.124,2131,7.051,2132,7.051,2133,7.051]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[26,0.073,51,0.494,94,3.328,110,3.552,357,2.687,799,1.778,2129,10.756,2130,5.66,2134,10.689,2135,6.147]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[254,3.679,665,3.24,906,4.682,959,5.044]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[254,3.939,665,3.469,906,5.013]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[17,1.241,110,2.546,119,1.881,142,2.227,174,3.13,254,5.93,257,3.86,263,4.493,364,4.387,548,5.099,658,3.653,710,4.387,906,3.984,907,5.034,1120,5.66,1136,4.493,1761,5.66,2136,5.339,2137,5.099]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[254,3.679,487,4.094,906,4.682,1788,5.581]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[254,3.939,1534,5.804,2138,7.735]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[17,1.752,51,0.36,119,3.052,126,3.132,142,3.146,254,5.485,257,3.929,357,2.735,533,4.054,658,5.927,906,4.054,907,3.672,1136,4.573,2136,7.541]],["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/",[28,0.787,1044,3.504,1716,3.119,1811,3.711]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[28,0.843,1044,3.751,1811,3.973]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[26,0.051,28,1.067,31,3.638,32,1.8,58,2.004,104,2.976,110,2.502,119,1.849,130,1.814,142,2.189,380,4.311,531,3.853,592,3.794,752,3.982,988,5.012,1027,3.103,1044,5.145,1194,2.976,1195,5.012,2139,2.692,2140,5.012]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[850,0.477]],["title//docs/troubleshooting/rescue-and-rebuild/",[1136,6.354,2141,7.211]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1136,6.261,2141,7.106]],["toc//docs/troubleshooting/rescue-and-rebuild/",[3,1.683,19,2.964,25,3.884,26,0.047,95,1.683,110,3.31,119,1.703,182,2.402,254,2.833,257,5.019,351,2.207,392,1.935,455,3.494,535,3.971,654,3.734,658,3.307,665,2.495,959,3.884,962,2.964,1027,2.858,1136,6.836,1569,5.123,2141,4.615,2142,4.832,2143,5.123,2144,5.564]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[65,1.265,119,2.415,1534,5.921]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2145,7.735,2146,7.735,2147,7.735]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[3,1.56,17,1.526,45,0.774,50,3.6,51,0.568,58,1.71,119,2.315,126,2.582,142,1.868,171,3.342,205,3.191,233,2.922,254,4.561,257,3.238,339,3.147,439,3.105,533,3.342,592,3.238,644,3.027,654,3.46,658,4.495,663,3.105,906,3.342,982,3.869,1007,4.747,1043,3.527,1136,3.769,1344,4.747]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[850,0.477]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[51,0.455,254,4.018,533,5.114]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[254,4.362,2148,8.566]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[4,1.493,5,1.011,17,1.734,26,0.041,51,0.617,110,1.99,131,2.278,254,5.647,286,2.559,401,4.322,491,3.167,533,6.935,589,4.173,661,3.017,917,3.605,981,3.985,1004,3.985,1095,3.512,1935,4.423,2149,4.423,2150,4.804]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1035,6.652,1046,5.28,1047,5.993,1048,5.421]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1046,4.379,1047,4.971,1048,4.496,1827,5.204,1828,5.204,2151,5.992]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[58,2.075,130,1.879,184,5.19,397,0.904,401,3.767,446,2.883,487,3.545,629,4.465,660,2.428,1046,6.346,1047,5.19,1048,6.515,1130,5.434,1824,5.76,1826,4.833,1827,5.434,1828,7.541,1829,5.19,2152,6.256,2153,6.256,2154,6.256]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[850,0.477]],["title//docs/troubleshooting/troubleshooting/",[800,4.729]],["keywords//docs/troubleshooting/troubleshooting/",[800,4.691]],["toc//docs/troubleshooting/troubleshooting/",[3,1.577,5,0.45,12,1.492,22,0.778,51,0.184,65,0.512,119,2.91,120,1.577,126,1.598,149,1.115,171,2.069,182,1.378,193,0.917,203,2.146,204,1.461,206,1.976,218,2.142,219,2.278,225,0.826,254,2.654,305,1.625,329,2.229,362,3.022,373,3.638,390,0.878,392,1.812,397,0.461,422,1.734,455,2.005,470,2.939,487,1.809,498,1.976,499,1.13,641,2.333,644,1.874,663,1.922,665,1.432,672,1.337,694,1.701,698,1.404,926,2.278,963,2.353,1069,2.549,1406,2.772,1462,2.772,1727,4.161,1823,2.466,1884,2.772,2155,3.192,2156,3.192,2157,2.772,2158,3.192,2159,3.192,2160,3.192,2161,3.192,2162,3.192,2163,3.192,2164,3.192,2165,2.939,2166,3.192,2167,3.192,2168,3.192,2169,3.192]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[487,4.926,963,3.925]],["keywords//docs/platform/accounts-and-passwords/",[120,2.134,487,3.996,955,5.154,963,3.184]],["toc//docs/platform/accounts-and-passwords/",[45,0.785,61,2.332,62,2.302,119,2.34,120,2.313,130,1.571,149,3.155,397,1.105,401,3.151,416,4.666,455,4.801,663,4.603,694,2.788,776,2.732,961,4.732,962,2.788,963,4.485,1069,4.178,1974,6.342,2019,3.825,2142,4.545]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[482,4.657]],["keywords//docs/platform/support/",[482,3.394,2170,7.051,2171,7.051,2172,7.051]],["toc//docs/platform/support/",[119,2.816,326,7.107,482,4.427,718,2.762,1974,7.631,2173,9.199]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[5,0.812,19,3.071,40,2.535,58,1.912,119,1.764,332,1.414,1561,4.113]],["keywords//docs/platform/linode-backup-service/",[2174,4.889,2175,4.889,2176,4.889,2177,4.889,2178,4.889,2179,4.889,2180,4.889,2181,4.889,2182,4.889]],["toc//docs/platform/linode-backup-service/",[19,6.129,25,6.416,58,2.592,119,2.813,120,1.632,122,4.684,126,2.7,340,1.973,403,3.849,422,2.93,446,2.485,447,3.338,523,4.966,585,4.474,625,3.942,658,3.206,1098,3.942,1734,4.474,1820,7.195,1829,4.474,2183,5.393]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[225,2.249,305,4.426]],["keywords//docs/websites/hosting-a-website/",[305,3.59,1677,5.63,1678,6.124,1696,6.492]],["toc//docs/websites/hosting-a-website/",[3,1.454,17,0.97,21,1.562,22,2.094,26,0.073,45,0.721,48,3.167,51,0.277,65,0.77,90,1.459,119,2.63,193,1.38,203,1.979,225,1.243,235,2.229,269,0.991,270,2.208,305,2.446,361,5.877,390,1.322,498,2.973,499,2.541,588,7.911,624,3.167,695,2.312,710,3.429]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[65,1.394,332,2.133]],["keywords//docs/security/securing-your-server/",[332,2.067,338,2.884,665,2.687,2184,5.992,2185,5.992]],["toc//docs/security/securing-your-server/",[5,0.61,16,1.794,17,0.874,28,0.472,51,0.25,58,2.999,61,1.93,62,1.905,91,0.779,130,1.993,149,1.513,157,1.39,159,1.217,203,1.784,262,1.996,325,2.574,332,1.063,338,2.085,348,2.286,392,1.506,401,3.996,403,3.091,410,3.091,487,2.455,570,2.244,580,3.593,660,1.681,665,3.618,672,1.815,957,2.855,998,3.024,1362,2.855,1433,2.72,1561,3.091,1689,3.988,1975,3.762,2036,3.024,2186,4.331,2187,3.988,2188,4.331,2189,5.505]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[32,1.985,45,1,65,1.068,769,2.949,1521,4.123]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[769,3.424,1521,4.787,1900,7.122]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.664,65,1.342,193,1.706,225,1.536,269,0.82,270,1.526,390,1.634,423,1.462,1901,5.159]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[28,0.674,65,0.991,227,1.788,2190,4.411,2191,4.411,2192,4.315]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[28,0.653,227,1.734,2190,4.276,2192,4.183,2193,5.992,2194,5.517]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[269,1.2,2195,7.55]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[269,0.973,2195,6.124,2196,7.051,2197,7.051]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[16,2.9,26,0.06,51,0.403,644,4.11,663,4.217,718,2.103,1117,5.809,2195,8.144,2198,7.003,2199,7.003,2200,7.003,2201,7.003,2202,7.003,2203,7.003,2204,7.003,2205,7.003,2206,7.003]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[51,0.455,269,1.089,2207,7.265]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[269,1.183,2208,8.566]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[26,0.065,45,1.142,61,3.39,62,3.347,90,2.311,159,2.138,175,4.466,339,4.643,958,6.075,2207,10.139,2209,7.608,2210,7.608]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[91,1.199,776,2.38,1034,2.808,2014,3.959,2211,3.206]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2017,4.432,2018,4.861,2212,6.478,2213,6.478,2214,5.965]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[26,0.054,45,0.956,51,0.367,340,2.33,392,2.215,397,0.921,423,1.568,697,2.386,786,3.31,805,3.887,806,3.271,944,4.545,963,2.876,992,4.062,1150,4,1361,0.948,1814,3.942,2014,5.225,2019,4.655,2137,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[850,0.477]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[4,1.921,5,0.871,6,2.62,619,4.315,620,4.935,964,4.637]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[620,6.84,964,6.428]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[3,3.104,6,2.065,7,4.256,17,1.464,19,2.595,32,1.452,45,0.731,51,0.281,54,1.717,77,4.041,84,3.015,139,5.062,216,5.71,286,2.595,619,6.7,656,3.655,661,3.059,964,3.655,990,6.298,1027,2.502,1371,4.485,1488,6.917,2215,4.871,2216,4.871,2217,4.871]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[28,0.726,65,1.068,1187,3.392,2140,5.526,2218,5.786]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[32,1.985,45,1,58,2.209,499,2.359,1139,4.065]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[499,3.033,1139,5.228]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[5,1.202,120,2.581,428,5.44,498,5.279,499,3.02,1004,7.076,1143,9.809,1959,7.409]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1171,6.522,2219,7.211]],["keywords//docs/websites/cms/kloxo-guides/",[1139,4.303,2219,5.85,2220,5.032,2221,5.032]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[65,1.158,159,2.031,1034,3.045,1187,3.679]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[21,1.211,22,1.356,26,0.068,45,0.835,47,1.838,51,0.321,63,3.297,65,1.281,95,1.683,130,1.671,142,2.016,193,1.598,225,1.439,227,1.61,270,1.43,332,1.365,351,1.536,357,2.432,390,1.531,423,1.37,799,1.61,858,2.546,1049,2.105,1178,2.148,1701,4.175]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[17,1.593,487,4.472,2222,6.546]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[487,4.384,2222,6.417,2223,7.122]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[17,2.354,95,2.997,149,3.46,397,1.1,487,5.613,1361,1.132,2223,9.119]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[850,0.477]],["title//docs/websites/cms/directadmin/",[2222,8.027]],["keywords//docs/websites/cms/directadmin/",[2222,7.962]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[28,0.726,65,1.068,769,2.949,2140,5.526,2218,5.786]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1666,5.005,2111,5.005,2224,6.478,2225,6.478,2226,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[26,0.061,159,2.031,2219,5.993,2227,2.535]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1139,4.303,2219,5.85,2220,5.032,2221,5.032]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[26,0.085,439,6.01,669,5.595]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[28,0.787,1044,3.504,2140,5.993,2218,6.275]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2228,7.051,2229,7.051,2230,5.85,2231,5.85]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[142,3.617,1044,5.683]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[5,0.871,26,0.053,697,2.316,786,2.327,1139,3.772,1150,3.881]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[644,4.54,697,2.898,1139,4.721]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[17,1.642,26,0.069,33,1.896,34,1.915,395,4.376,697,3.048,786,3.893,800,3.976,806,4.179,1150,5.11]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[157,2.532,975,5.295,2232,6.546]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[157,2.079,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[850,0.477]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[159,2.218,975,5.295,1034,3.326]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[159,1.821,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[91,1.3,975,4.848,1034,3.045,2211,3.477]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[91,1.078,264,3.223,789,4.183,975,4.021,976,4.971,2211,2.884]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[65,1.158,157,2.318,769,3.198,2232,5.993]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1799,5.154,1800,5.291,2233,7.051,2234,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[21,2.242,22,1.971,26,0.088,32,1.685,45,1.213,51,0.628,65,1.296,193,1.624,225,1.462,235,2.623,269,1.116,270,1.453,390,1.556,423,1.392,545,3.664,695,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[850,0.477]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[159,2.218,769,3.493,1034,3.326]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[21,1.213,159,1.566,269,0.769,270,1.432,769,2.467,1036,4.45,1311,5.131]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[17,1.386,21,2.014,22,1.674,26,0.089,33,1.6,34,1.616,51,0.645,193,1.972,225,1.776,269,1.277,270,1.764,390,1.889]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1169,5.295,1171,5.921,1528,6.546]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[508,6.84,1169,5.749]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[45,0.809,47,1.06,51,0.311,115,3.849,233,5.208,257,3.387,261,4.684,262,2.485,269,0.744,333,3.942,362,3.128,380,3.849,539,3.291,639,3.206,644,3.166,663,3.247,694,2.873,786,2.031,848,3.942,1003,4.966,1027,2.77,1108,3.247,1169,5.244,2235,4.966,2236,5.393,2237,5.393,2238,5.393,2239,5.393,2240,5.393,2241,4.966]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[21,1.255,91,1.037,776,2.06,1034,2.429,1066,2.17,1593,3.042,2211,2.774]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[91,1.003,776,1.991,1593,2.941,2211,2.682,2214,5.131,2242,5.573,2243,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[21,1.345,159,1.737,776,2.208,1066,2.327,1593,3.262,2227,2.169]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[776,2.315,1596,4.623,2245,6.478,2246,6.478,2247,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[21,1.78,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[65,1.158,157,2.318,1187,3.679,2232,5.993]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[21,1.231,22,1.378,26,0.08,45,0.848,47,1.589,51,0.544,65,1.296,95,1.71,130,1.698,193,1.624,225,1.462,227,1.636,270,1.453,332,1.983,390,1.556,397,0.817,423,1.392,624,3.726,799,1.636,1049,2.139,1178,2.183,1361,0.841,1535,3.55]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[65,1.068,91,1.199,1034,2.808,1187,3.392,2211,3.206]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[21,1.156,22,1.295,26,0.066,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,91,0.956,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,397,0.768,423,1.308,799,1.537,858,2.431,1024,4.614,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2191,4.113,2192,4.024]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2248,5.573,2249,4.84,2250,4.623]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[45,1.193,51,0.587,58,2.637,90,2.415,278,4.278,397,1.15,423,1.957,777,4.32,1361,1.183,1997,4.726]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[28,0.726,65,1.068,769,2.949,2191,4.754,2192,4.651]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1666,5.005,2111,5.005,2194,5.965,2251,6.478,2252,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[58,1.791,91,0.972,495,3.391,499,1.912,1034,2.276,2081,3.854,2082,2.963,2211,2.599]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[91,1.166,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2191,3.854,2192,3.77]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2232,4.781]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[5,0.931,26,0.056,45,0.992,51,0.591,331,3.59,351,1.825,397,0.955,423,1.627,486,3.133,499,2.34,529,3.704,660,2.565,1361,0.983,2091,6.147,2095,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2191,3.854,2192,3.77]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[28,0.674,120,1.87,391,4.005,720,3.772,2191,4.411,2192,4.315]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[720,3.954,2254,6.478,2255,5.173,2256,5.173,2257,5.173]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[91,1.112,120,1.87,391,4.005,720,3.772,1034,2.605,2211,2.974]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2259,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[47,1.214,91,1.112,270,1.588,1034,2.605,1178,2.386,2211,2.974]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[47,1.386,1537,4.139,1538,4.732,2260,7.051]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[28,0.674,47,1.214,270,1.588,1178,2.386,2191,4.411,2192,4.315]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[47,1.386,1537,4.139,1538,4.732,2261,7.051]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[119,2.415,898,5.767,1109,5.921]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2262,8.566,2263,8.566]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[51,0.429,204,3.408,478,4.909,517,5.753,661,4.677,663,5.881,1108,4.484,1109,9.012,2264,7.447,2265,7.447]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2191,4.411,2192,4.315]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2023,5.005,2266,6.478,2267,5.965,2268,6.478,2269,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[32,1.985,45,1,119,2.039,1107,3.818,1109,4.998]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[672,2.954,1107,4.042,1109,5.291,2270,7.051]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[4,2.915,28,0.763,33,1.632,34,1.648,51,0.403,91,1.26,157,2.247,159,2.635,232,2.934,447,4.334,669,3.925,771,3.506,1034,2.951,1326,3.662,1521,4.334,2165,6.448]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[28,0.787,1044,3.504,2191,5.156,2192,5.044]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2230,5.85,2231,5.85,2271,7.051,2272,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[142,3.617,1044,5.683]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[850,0.477]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[65,0.924,91,1.037,193,1.655,214,2.987,1034,2.429,2008,3.196,2211,2.774]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[269,0.973,1510,5.63,2008,3.91,2010,5.032]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[91,1.199,269,0.92,606,4.123,1034,2.808,2211,3.206]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[157,2.318,269,0.997,606,4.471,2273,3.965]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[28,0.726,269,0.92,606,4.123,2139,2.968,2274,2.876]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/platform/stackscripts/",[36,4.632,63,2.781,547,6.546]],["keywords//docs/platform/stackscripts/",[36,3.803,138,4.735,267,4.01,2275,6.478,2276,6.478]],["toc//docs/platform/stackscripts/",[5,1.295,17,1.089,63,2.755,89,3.689,119,1.651,126,2.7,131,2.557,175,3.166,180,3.555,276,3.166,341,2.372,528,4.684,529,3.023,547,9.775,799,1.56,905,3.439,2056,3.619,2277,5.393,2278,4.966,2279,5.393,2280,5.393,2281,5.393,2282,5.393]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[91,1.112,1034,2.605,2001,4.315,2002,4.227,2003,3.772,2211,2.974]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[157,2.138,2001,4.651,2002,4.557,2003,4.065,2273,3.656]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[157,2.138,269,0.92,606,4.123,1313,3.07,2273,3.656]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[55,2.825,269,0.973,606,4.364,1313,3.249]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[26,0.081,45,1.072,51,0.547,63,2.518,199,3.688,269,1.312,310,3.184,397,1.033,423,1.759,812,3.67,1313,4.379,1361,1.063]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[91,1.3,1034,3.045,2054,3.965,2211,3.477]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[91,0.937,168,2.675,476,3.136,1837,2.566,2048,3.136,2054,2.859,2283,5.209,2284,5.209]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[28,0.787,2054,3.965,2139,3.219,2274,3.119]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[28,0.787,2054,3.965,2285,3.531,2286,3.504]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[91,1.037,120,1.744,476,3.47,722,2.839,1034,2.429,2211,2.774,2287,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[120,1.87,157,1.983,476,3.721,722,3.045,2273,3.392,2287,4.517]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[28,0.628,120,1.744,476,3.47,722,2.839,2285,2.817,2286,2.795,2287,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[120,1.744,159,1.62,276,3.383,2227,2.022,2289,4.113,2290,4.453,2291,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[276,3.803,2289,4.623,2292,5.965,2293,5.627,2294,5.173]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[26,0.088,51,0.469,130,2.443,227,2.354,332,1.996,718,2.443,799,2.354,1049,3.079,2289,7.38]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[120,1.744,157,1.85,276,3.383,2273,3.163,2289,4.113,2290,4.453,2291,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[276,3.803,2289,4.623,2292,5.965,2293,5.627,2294,5.173]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[26,0.085,51,0.448,130,2.335,227,2.25,332,1.908,397,1.124,718,2.335,799,2.25,1049,2.943,1361,1.157,2289,7.169]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[91,0.972,120,1.634,530,3.251,776,1.93,1034,2.276,1760,3.694,2079,3.295,2211,2.599]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[7,4.194,26,0.061,45,1.072,51,0.615,397,1.033,415,4.887,423,1.759,625,5.222,628,4.422,777,3.029,1361,1.063,2079,6.516,2295,6.206]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[91,1.112,119,1.892,120,1.87,1034,2.605,2211,2.974,2296,3.628]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[119,2.039,120,2.016,157,2.138,2273,3.656,2296,3.91]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,1.619,142,1.954,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[157,1.983,227,1.788,351,1.707,698,2.719,1483,3.542,2273,3.392]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[28,0.628,227,1.668,351,1.592,698,2.535,1483,3.304,2285,2.817,2286,2.795]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[65,0.991,91,1.112,227,1.788,1034,2.605,2190,4.411,2211,2.974]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[227,2.478,2190,6.113]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[28,0.628,286,3.071,950,3.567,2285,2.817,2286,2.795,2306,4.602,2307,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1076,2.984,2308,4.889,2309,4.889,2310,4.889,2311,4.247,2312,3.904,2313,3.904,2314,3.777,2315,3.904]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[91,1.3,191,3.812,1034,3.045,2211,3.477]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[22,1.719,191,3.721,904,3.56,2040,5.032]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[91,1.112,269,0.853,474,3.232,1034,2.605,1206,3.292,2211,2.974]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[157,1.983,231,3.094,269,0.853,697,2.316,786,2.327,2273,3.392]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[713,3.502,1709,4.823,1711,6.124,2318,5.85]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[91,1.112,332,1.516,741,3.12,905,3.941,1034,2.605,2211,2.974]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2319,7.735,2320,7.735,2321,7.735]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,4.312,539,4.209,672,2.889,741,3.482,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,1.309,157,2.138,2273,3.656,2322,4.754,2323,5.526]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[850,0.477]],["title//docs/websites/wikis/twiki-on-centos-5/",[159,2.218,2047,4.523,2227,2.769]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-centos-5/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[850,0.477]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[91,1.3,1034,3.045,2047,4.141,2211,3.477]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/twiki-on-fedora-14/",[157,2.532,2047,4.523,2273,4.33]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[850,0.477]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[5,0.938,262,3.07,348,3.516,665,2.988,1105,4.317]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[469,3.105,665,2.687,999,5.517,1107,3.434,1127,5.517,1925,4.379]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[4,1.846,65,1.342,72,3.625,174,3.024,182,3.615,228,4.029,247,3.625,262,4.852,278,3.195,348,3.134,351,2.312,665,2.664,710,4.239,771,4.192,1111,6.282,2076,4.341,2325,8.372]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.921,5,0.871,21,1.345,22,1.507,1074,3.357,1326,3.232]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1854,5.976,1912,6.719,2326,7.735]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[5,1.027,21,2.497,26,0.062,51,0.555,347,4.514,351,2.014,397,1.054,961,4.514,962,3.885,963,3.293,1361,1.085,1692,5.472]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[850,0.477]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[28,0.726,269,0.92,606,4.123,2285,3.256,2286,3.231]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[58,1.912,91,1.037,1034,2.429,1281,3.304,1986,3.426,1987,3.735,2211,2.774]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1988,3.574,1989,3.223,1991,3.169,1992,3.169,2031,3.223,2327,4.889,2328,4.889,2329,4.056,2330,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[26,0.085,45,1.508,51,0.448,87,4.682,338,3.743,397,1.124,423,1.914,718,2.335,1361,1.157,1986,5.971]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[65,0.924,91,1.037,193,1.655,231,2.886,269,0.796,1034,2.429,2211,2.774]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[700,5.173,1510,5.173,2331,6.478,2332,6.478,2333,6.478]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[16,3.509,26,0.083,33,1.408,34,1.422,51,0.488,56,2.447,225,1.563,231,3.025,235,2.803,269,1.351,273,3.8,315,3.386,390,1.662,397,0.873,482,2.907,695,2.907,1361,0.899,1490,4.218,2334,5.247]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[4,2.453,1326,4.126,2054,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[26,0.098,47,1.463,51,0.429,65,1.194,193,2.139,269,1.028,397,1.077,733,4.319,1361,1.108,1638,4.609,2054,5.36]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2285,2.817,2286,2.795]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2335,5.517]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[65,1.068,91,1.199,769,2.949,1034,2.808,2211,3.206]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1514,6.417,1905,6.719,2336,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[65,0.991,157,1.983,193,1.775,214,3.203,2008,3.427,2273,3.392]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[269,0.973,2008,3.91,2010,5.032,2337,6.492]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[91,1.037,286,3.071,950,3.567,1034,2.429,2211,2.774,2306,4.602,2307,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1076,2.984,2312,3.904,2313,3.904,2314,3.777,2315,3.904,2338,4.889,2339,4.889,2340,4.889,2341,4.502]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[5,0.715,40,2.234,91,0.914,206,3.144,235,2.357,1034,2.141,2087,2.732,2088,3.625,2211,2.445]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[91,1.269,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[5,0.812,49,2.458,58,1.912,157,1.85,269,0.796,341,2.535,2273,3.163]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[5,0.812,47,1.133,91,1.037,812,2.96,1034,2.429,1314,2.987,2211,2.774]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[47,1.309,91,1.199,305,3.392,1034,2.808,2211,3.206]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[47,1.177,91,1.078,337,2.78,713,2.976,2342,5.517,2343,5.992]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,91,1.069,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,0.812,22,1.405,46,2.488,91,1.037,1034,2.429,1074,3.131,2211,2.774]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1076,4.303,1170,4.732,2344,7.051,2345,7.051]],["toc//docs/databases/postgresql/debian-6-squeeze/",[17,2.092,22,1.642,26,0.078,45,1.011,46,4.474,51,0.388,149,2.353,237,4.365,397,0.974,963,3.041,1077,3.86,1081,4.439,1361,1.002,2103,5.203,2104,5.203]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[91,1.199,269,0.92,1034,2.808,1182,3.734,2211,3.206]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[29,3.59,2346,5.85,2347,6.492,2348,6.492]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[91,1.199,269,0.92,606,4.123,2227,2.338,2350,2.683]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[54,2.032,91,1.037,740,4.325,776,2.06,1034,2.429,1066,2.17,2211,2.774]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[91,1.112,269,0.853,606,3.825,1034,2.605,1313,2.848,2211,2.974]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[47,1.214,91,1.112,1034,2.605,1178,2.386,1837,3.045,2211,2.974]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2023,5.005,2267,5.965,2353,6.478,2354,6.478,2355,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[91,0.972,149,1.886,351,1.491,487,3.06,1066,2.033,1593,2.85,2227,1.895,2350,2.175]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[776,2.52,1066,2.655,1593,3.721,2356,7.051]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[26,0.051,45,0.907,51,0.611,58,2.81,228,2.907,348,3.188,397,0.873,423,1.487,660,2.344,697,2.263,777,4.498,793,4.416,799,1.748,972,4.824,1066,2.275,1361,0.899,1593,3.188,2357,6.041,2358,6.041]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[28,0.674,269,0.853,474,3.232,1206,3.292,2285,3.021,2286,2.997]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,1.214,91,1.112,1034,2.605,2211,2.974,2322,4.411,2323,5.127]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[26,0.06,45,1.051,47,1.842,51,0.54,65,1.503,199,2.718,204,3.205,397,1.012,423,1.724,482,3.37,858,3.205,1314,5.477,1361,1.042]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[91,1.3,1034,3.045,1319,4.19,2211,3.477]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[91,1.037,776,2.06,1034,3.454,1379,3.799,2211,2.774,2359,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1596,4.276,2360,5.992,2361,5.992,2362,5.517,2363,4.784,2364,4.784]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[26,0.083,51,0.429,54,2.625,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.236,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[91,1.037,120,1.744,476,3.47,722,2.839,2227,2.022,2287,4.213,2350,2.321]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[59,3.343,65,0.924,91,1.037,777,2.444,1034,2.429,1997,3.426,2211,2.774]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1381,3.5,1999,4.182,2000,4.182,2342,5.131,2365,5.573,2366,5.573,2367,5.131]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[28,0.787,2047,4.141,2139,3.219,2274,3.119]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[28,0.787,2047,4.141,2285,3.531,2286,3.504]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[5,0.761,91,0.972,278,2.905,499,1.912,1034,2.276,2091,2.877,2092,3.694,2211,2.599]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[91,0.937,499,1.844,840,3.271,2091,2.775,2095,2.802,2368,5.209,2369,5.209,2370,5.209]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[28,0.726,47,1.309,305,3.392,2285,3.256,2286,3.231]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[28,0.653,47,1.177,337,2.78,713,2.976,2371,5.204,2372,4.971]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[17,1.199,26,0.083,28,0.647,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[91,1.3,1034,3.045,1044,3.504,2211,3.477]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1949,6.492,1950,6.492,2211,3.394,2373,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[142,3.423,316,7.297,351,2.608,1044,5.499]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[4,2.071,47,1.309,1178,2.572,1326,3.483,1837,3.282]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1178,2.501,2025,4.523,2374,6.478,2375,5.627,2376,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[26,0.062,45,1.095,51,0.555,90,2.215,95,2.207,225,1.887,272,2.706,390,2.007,397,1.054,423,1.795,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[4,2.071,47,1.309,270,1.712,1178,2.572,1326,3.483]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1537,4.139,1538,4.732,2375,6.124,2376,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[26,0.068,45,1.193,51,0.458,90,2.415,225,2.057,270,2.043,390,2.188,397,1.15,423,1.957,799,2.301,1178,3.07,1361,1.183]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2273,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[5,0.931,26,0.056,45,0.992,51,0.591,331,3.59,351,1.825,397,0.955,423,1.627,486,3.133,499,2.34,529,3.704,660,2.565,1361,0.983,2091,6.147,2095,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2285,2.639,2286,2.619]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,2.246,47,1.42,305,3.679,1326,3.777]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[47,1.273,713,3.217,2375,5.627,2376,5.627,2377,6.478]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[26,0.078,45,1.381,47,1.808,397,1.33,423,2.264,1361,1.369]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[91,1.3,2054,3.965,2227,2.535,2350,2.91]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[91,0.937,168,2.675,476,3.136,1837,2.566,2048,3.136,2054,2.859,2378,5.209,2379,5.209]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/social-networking/phpfox/",[2380,7.726]],["keywords//docs/applications/social-networking/phpfox/",[905,4.933,2117,6.176,2380,6.176]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[850,0.477]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[91,1.3,2047,4.141,2227,2.535,2350,2.91]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[5,0.812,21,1.255,22,1.405,91,1.037,1034,2.429,1074,3.131,2211,2.774]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1854,5.005,2381,6.478,2382,5.965,2383,6.478,2384,6.478]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[28,0.787,2070,4.094,2285,3.531,2286,3.504]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2385,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[58,1.912,157,1.85,495,3.62,499,2.041,2081,4.113,2082,3.163,2273,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2318,5.374]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2285,2.639,2286,2.619]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[28,0.787,1319,4.19,2285,3.531,2286,3.504]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,1.214,91,1.112,2227,2.169,2322,4.411,2323,5.127,2350,2.489]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[5,0.938,21,1.45,22,1.624,1074,3.619,1521,4.123]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[21,1.535,22,1.719,1521,4.364,2314,5.447]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[5,1.173,21,2.626,26,0.071,51,0.48,347,5.155,397,1.204,1361,1.239]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[850,0.477]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[21,1.345,28,0.674,120,1.87,1849,3.232,2285,3.021,2286,2.997]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[21,1.535,28,0.769,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[3,2.207,26,0.082,51,0.555,90,2.215,142,2.642,269,1.007,332,1.789,334,5.092,642,4.58,697,2.732,1849,5.999]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[47,1.309,157,2.138,270,1.712,1178,2.572,2273,3.656]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[47,1.386,1537,4.139,1538,4.732,2386,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[26,0.063,45,1.118,51,0.563,90,2.262,95,2.253,270,1.914,272,2.763,397,1.077,423,1.833,552,3.967,1178,2.875,1361,1.108,2300,4.826,2387,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[47,1.309,157,2.138,1178,2.572,1837,3.282,2273,3.656]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[47,1.386,1537,4.139,2025,4.923,2386,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[26,0.063,45,1.118,51,0.563,90,2.262,95,2.253,272,2.763,397,1.077,423,1.833,552,3.967,1178,3.771,1361,1.108,1562,5.443,1837,3.669]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[28,0.787,1319,4.19,2139,3.219,2274,3.119]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[157,2.532,2070,4.472,2388,4.33]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[67,3.312,140,3.312,159,1.566,368,3.612,2070,3.158,2071,4.073,2389,5.573]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[4,1.921,5,0.871,47,1.214,812,3.174,1314,3.203,1326,3.232]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[47,1.273,55,2.595,812,3.328,1314,3.357,1912,5.627]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[17,1.472,26,0.062,45,1.095,47,1.433,51,0.42,56,2.954,65,1.544,199,2.83,204,3.337,397,1.054,423,1.795,1314,4.992,1361,1.085,1852,3.779]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[5,0.871,47,1.214,157,1.983,812,3.174,1314,3.203,2273,3.392]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[26,0.083,45,1.118,47,1.919,51,0.563,65,1.194,199,2.89,204,3.408,397,1.077,423,1.833,1314,5.061,1361,1.108]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,2273,3.392]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[700,6.176,2390,7.735,2391,7.122]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[12,2.56,16,2.269,26,0.079,45,0.822,51,0.585,56,2.218,65,0.878,225,1.417,235,2.541,269,1.28,273,2.456,337,2.541,345,3.61,390,1.507,397,0.792,400,3.176,423,1.348,482,2.636,642,3.44,695,2.636,924,4.11,963,2.473,1361,0.815,1561,3.909,2392,4.11]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[157,2.318,269,0.997,1182,4.049,2273,3.965]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[29,3.299,2393,6.478,2394,6.478,2395,6.478,2396,5.627]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[5,1.173,26,0.071,45,1.25,90,2.53,269,1.15,397,1.204,423,2.05,1182,5.882,1361,1.239]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[28,0.726,269,0.92,1182,3.734,2285,3.256,2286,3.231]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[29,3.299,1985,5.173,2397,6.478,2398,6.478,2399,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2285,2.817,2286,2.795]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[28,0.653,1709,4.099,1881,3.883,2372,4.971,2400,5.517,2401,5.517]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,2273,3.392]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1854,5.976,1855,6.417,2402,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[5,1.072,21,2.397,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132,1692,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[47,1.42,157,2.318,305,3.679,2273,3.965]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[47,1.177,337,2.78,713,2.976,2318,4.971,2386,5.204,2403,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[17,1.219,26,0.072,45,0.907,47,2.085,56,2.447,94,2.344,95,1.828,120,1.828,130,1.814,131,2.864,227,1.748,332,1.482,357,2.641,397,0.873,423,1.487,718,1.814,799,1.748,858,2.765,1049,2.286,1361,0.899,1701,4.533,1852,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[28,0.628,65,0.924,193,1.655,231,2.886,269,0.796,2285,2.817,2286,2.795]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[269,0.827,713,2.976,2009,4.379,2404,5.992,2405,5.992,2406,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2139,2.568,2274,2.488]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2335,5.517]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2285,2.639,2286,2.619]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[28,0.787,2070,4.094,2139,3.219,2274,3.119]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2407,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2139,2.406,2274,2.331]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/redis/redis-on-fedora-14/",[157,2.532,191,4.164,2273,4.33]],["keywords//docs/databases/redis/redis-on-fedora-14/",[22,1.579,191,3.419,904,3.271,2040,4.623,2408,6.478]],["toc//docs/databases/redis/redis-on-fedora-14/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,474,3.232,1206,3.292,2285,3.021,2286,2.997]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2285,2.482,2286,2.463,2409,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1700,2.623,1869,3.812,1870,3.812,2410,5.573,2411,5.573,2412,4.073,2413,4.073]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[26,0.062,45,1.095,51,0.42,269,1.33,270,2.475,273,3.271,340,2.667,397,1.054,423,1.795,1258,4.044,1281,4.18,1361,1.085,1872,5.472,2414,5.823]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2285,2.817,2286,2.795]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2249,4.84,2250,4.623,2415,5.573]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[5,0.761,40,2.375,157,1.733,206,3.342,235,2.506,2087,2.905,2088,3.854,2273,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2285,2.482,2286,2.463]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[5,1.202,26,0.091,397,1.233,799,2.468,1361,1.269,2087,6.249]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2285,2.639,2286,2.619]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[65,1.158,157,2.318,1187,3.679,2273,3.965]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[21,1.156,22,1.295,26,0.066,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,157,1.705,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[28,0.726,65,1.068,1187,3.392,2416,3.136,2417,3.091]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[21,1.192,22,1.335,26,0.067,28,0.597,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,397,0.792,799,1.585,858,2.506,1049,2.072,1178,2.115,1361,0.815]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[65,1.158,157,2.318,769,3.198,2273,3.965]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1799,5.154,1800,5.291,2418,7.051,2419,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[21,2.242,22,1.971,26,0.088,32,1.685,45,1.213,51,0.628,65,1.296,193,1.624,225,1.462,235,2.623,269,1.116,270,1.453,390,1.556,423,1.392,545,3.664,695,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[850,0.477]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[65,1.265,227,2.283,1201,4.69]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1201,4.598,1632,6.176,2420,7.735]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[850,0.477]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[530,4.35,2421,5.421,2422,6.275,2423,6.275]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[4,1.863,393,3.883,877,4.496,2422,5.204,2423,5.204,2424,5.204]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[7,5.832,35,2.736,74,3.734,77,4.341,401,4.603,530,4.603,589,8.629,1486,4.545,1649,7.039,1788,4.042,1888,4.341,2056,5.131,2334,4.545,2422,8.629,2423,9.179,2425,7.645,2426,5.233]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[28,0.674,332,1.516,741,3.12,905,3.941,2285,3.021,2286,2.997]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[28,0.653,469,3.105,672,2.51,741,3.025,2372,4.971,2401,5.517]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[4,1.792,5,0.812,6,2.444,315,3.231,592,3.62,2427,5.006,2428,5.006]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[4,2.192,2427,6.124,2428,6.124,2429,7.051]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[74,5.806,315,5.796,351,2.247,376,5.46,392,2.829,398,7.491,661,5.11,907,4.776,2427,7.066,2428,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/",[3,1.87,38,3.772,619,4.315,995,4.935,2295,5.368,2430,4.774]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[4,1.863,72,3.657,492,4.276,995,4.784,2424,5.204,2431,5.517]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[5,1.072,7,4.466,82,6.608,486,3.607,698,4.356,913,5.43,992,4.852,995,8.792,1848,5.43,2295,8.602]],["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/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,719,2.733,2273,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[28,0.726,65,1.068,1187,3.392,2285,3.256,2286,3.231]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[4,2.071,58,2.209,227,1.927,1201,3.959,1521,4.123]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[26,0.084,51,0.616,54,2.167,59,3.565,142,2.227,269,0.849,371,4.387,392,2.138,397,0.889,718,1.846,777,2.606,1201,6.683,1359,5.988,1361,0.915,1757,4.291]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[28,0.674,58,2.05,227,1.788,1201,3.673,2285,3.021,2286,2.997]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[17,0.983,26,0.092,51,0.499,54,1.717,59,2.825,94,1.89,137,2.76,142,1.765,149,1.701,198,3.661,310,2.17,371,3.476,392,1.694,397,0.704,718,1.463,777,2.065,799,1.409,958,5.79,1082,3.332,1201,6.804,1359,5.062,1361,0.725,1757,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[5,0.871,47,1.214,159,1.737,812,3.174,1314,3.203,2227,2.169]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[26,0.082,45,1.095,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,423,1.795,1314,4.992,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[5,0.871,47,1.214,157,1.983,812,3.174,1314,3.203,2388,3.392]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[26,0.062,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,482,3.51,858,3.337,1314,5.589,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2416,2.713,2417,2.675]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[26,0.062,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,482,3.51,858,3.337,1314,5.589,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[28,0.628,54,2.032,740,4.325,776,2.06,1066,2.17,2139,2.568,2274,2.488]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[28,0.628,54,2.032,740,4.325,776,2.06,1066,2.17,2285,2.817,2286,2.795]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[47,1.309,51,0.384,337,3.091,340,2.437,697,2.496]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[47,1.024,333,3.807,337,2.417,697,1.952,1718,4.796,2432,5.209,2433,5.209,2434,5.209]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[5,0.935,17,0.874,26,0.037,47,1.777,51,0.382,54,1.527,120,1.311,169,3.944,214,2.244,225,1.717,245,3.024,337,3.079,361,2.963,390,1.826,395,2.33,482,2.085,552,2.307,645,2.907,697,4.138,771,3.323,786,3.67,805,2.643,806,3.408,1150,2.72,2435,4.331,2436,6.636]],["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/",[5,0.812,47,1.133,91,1.037,812,2.96,1314,2.987,2227,2.022,2350,2.321]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2285,2.817,2286,2.795]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2285,3.021,2286,2.997,2296,3.628]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[28,0.787,191,3.812,2285,3.531,2286,3.504]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[22,1.579,904,3.271,2040,4.623,2437,6.478,2438,6.478]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[17,0.919,26,0.039,40,2.004,51,0.479,56,1.845,94,3.229,120,2.087,130,1.368,131,2.16,142,1.651,191,5.749,205,2.819,227,1.318,234,2.526,264,2.45,332,1.118,351,1.258,392,1.584,397,0.659,428,2.905,529,2.553,799,2.685,858,3.808,1049,1.724,1086,2.553,1361,0.678,1852,2.361,2041,4.921]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[28,0.674,269,0.853,606,3.825,1313,2.848,2285,3.021,2286,2.997]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[6,2.824,7,3.91,94,2.585,763,4.754,911,5.146]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[911,5.976,965,6.176,2439,7.735]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[3,1.632,5,0.76,35,2.82,38,3.291,94,4.151,127,4.966,132,4.047,261,4.684,337,3.626,403,3.849,513,4.306,722,2.657,763,5.577,786,2.031,805,3.291,806,2.77,911,6.037,1111,4.047,1296,3.849,1734,4.474,1848,3.849,2013,4.966,2278,4.966,2440,4.966,2441,4.966,2442,4.966]],["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,1.87,4,1.921,5,0.871,6,2.62,7,3.628,661,3.881]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[4,2.405,965,6.176,2443,7.735]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,3.16,4,2.761,5,1.054,6,3.765,7,2.983,15,3.476,16,2.105,35,2.657,54,1.791,197,3.548,218,3.41,235,2.358,242,3.41,259,3.627,315,2.848,361,3.476,661,7.278,695,2.446,722,2.503,913,3.627,1432,4.414]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[119,2.039,120,2.016,157,2.138,2296,3.91,2388,3.656]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[157,1.983,227,1.788,351,1.707,698,2.719,1483,3.542,2388,3.392]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2285,2.817,2286,2.795]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[46,2.587,1075,4.784,1076,3.657,1170,4.021,2444,5.992,2445,5.992]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,2.016,34,1.568,38,4.065,619,4.651,993,5.319]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[4,2.014,492,4.623,993,5.173,1958,4.861,2446,6.478]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,2.462,5,1.146,6,3.449,38,6.311,82,7.066,214,4.216,486,3.858,993,6.496,1848,7.38]],["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/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2285,2.817,2286,2.795]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2285,2.817,2286,2.795]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1475,4.27,2096,5.005,2097,4.735,2447,6.478,2448,6.478]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[5,1.146,21,2.474,26,0.069,51,0.596,54,2.868,351,2.247,397,1.176,1361,1.211]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2285,3.021,2286,2.997]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2371,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[28,0.787,1044,3.504,2285,3.531,2286,3.504]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2230,5.85,2231,5.85,2449,7.051,2450,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[351,2.608,982,7.088,1044,4.581,2137,7.836,2451,8.204]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[28,0.726,65,1.068,769,2.949,2285,3.256,2286,3.231]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1666,5.005,2111,5.005,2372,5.374,2452,6.478,2453,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[5,0.871,447,3.825,499,2.188,535,4.411,1080,4.637,2454,5.368]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[499,2.497,800,3.446,1719,5.85,2454,6.124]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[5,1.564,26,0.051,65,0.952,313,4.742,498,3.676,499,2.964,612,4.742,765,3.915,771,2.974,1080,4.456,1248,4.588,1788,4.588,1848,4.239,2454,10.28,2455,5.939,2456,5.939]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[5,0.938,227,1.927,351,1.839,535,4.754,2457,5.786]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[4,1.863,74,4.276,422,3.255,800,2.928,2458,5.992,2459,5.992]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[5,1.072,6,3.226,263,5.561,351,2.101,422,4.133,1848,5.43,1887,6.075,2157,6.608,2457,10.13,2460,7.608,2461,7.608]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[157,2.532,2388,4.33,2462,6.096]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[157,2.263,264,3.793,789,4.923,2462,5.447]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[21,1.255,28,0.628,776,2.06,1066,2.17,1593,3.042,2285,2.817,2286,2.795]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[28,0.607,776,1.991,1593,2.941,2286,2.703,2463,5.573,2464,5.573,2465,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,270,1.588,1178,2.386,2285,3.021,2286,2.997]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[47,1.386,1537,4.139,1538,4.732,2371,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2285,2.639,2286,2.619]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,2.016,17,1.345,351,1.839,693,4.869,2467,6.134]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[4,2.014,72,3.954,511,5.965,965,5.173,2424,5.627]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,1.767,5,0.823,6,2.476,17,1.939,35,3.054,88,7.186,332,1.433,351,1.613,693,8.373,2056,3.92,2467,5.378,2468,9.077,2469,8.274,2470,5.841,2471,5.841,2472,5.841]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,2.016,5,0.938,120,2.016,698,2.93,2473,5.786]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2473,6.719,2474,7.735,2475,7.735]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[1,5.909,3,2.855,5,0.796,6,2.397,51,0.544,259,4.034,345,3.726,392,2.811,416,3.45,486,2.68,698,4.793,826,6.245,1012,5.205,1961,4.69,2473,8.196,2476,5.653,2477,5.653]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[22,1.761,198,3.647,341,3.178,719,3.425]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[22,1.719,341,3.102,719,3.343,904,3.56]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[3,2.15,17,0.957,22,1.155,32,1.413,33,1.105,34,1.115,45,0.711,51,0.491,61,2.112,62,2.085,65,0.76,90,1.44,149,1.656,203,1.952,225,1.226,262,2.184,340,2.599,341,3.749,348,2.501,439,2.854,496,4.117,590,3.932,719,2.247,733,2.749,771,2.373,841,8.809,943,4.117,1054,3.784,1080,3.556,2478,4.364,2479,7.105]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[28,0.674,2001,4.315,2002,4.227,2003,3.772,2139,2.754,2274,2.668]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[157,1.85,193,1.655,224,3.343,270,1.481,1178,2.225,2068,3.163,2388,3.163]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2068,3.555,2480,5.965,2481,5.965,2482,5.965,2483,6.478]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[26,0.073,51,0.614,90,2.591,95,2.581,272,3.165,397,1.233,552,4.544,1361,1.269]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[157,1.983,1602,4.774,1823,4.774,2388,3.392,2484,4.411,2485,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[157,2.263,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[157,2.532,2054,4.33,2388,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[157,1.788,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2486,4.45]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[58,2.05,157,1.983,1281,3.542,1987,4.005,2026,3.628,2388,3.392]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[5,0.866,26,0.052,45,0.922,51,0.354,54,2.167,149,2.147,204,2.813,225,1.59,319,3.608,362,3.565,390,1.691,397,0.889,423,2.111,499,2.176,733,3.565,800,3.004,1361,0.915,2026,5.798,2032,3.306,2035,4.612,2036,4.291,2037,3.984]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[91,1.037,227,1.668,351,1.592,698,2.535,1483,3.304,2227,2.022,2350,2.321]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[28,0.628,227,1.668,351,1.592,698,2.535,1483,3.304,2139,2.568,2274,2.488]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[227,2.283,698,3.471,1483,4.523]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[850,0.477]],["title//docs/websites/wikis/confluence-on-centos-5/",[159,2.218,2227,2.769,2488,5.032]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2488,4.497,2489,7.051,2490,5.63,2491,5.63]],["toc//docs/websites/wikis/confluence-on-centos-5/",[17,1.918,22,1.742,26,0.081,27,5.099,29,3.638,45,1.072,51,0.412,225,1.848,390,1.966,423,1.759,1034,3.011,2488,7.258]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[850,0.477]],["title//docs/websites/wikis/confluence-on-fedora-13/",[157,2.532,2388,4.33,2488,5.032]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2488,4.497,2490,5.63,2491,5.63,2492,7.051]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[17,1.868,22,1.674,26,0.079,27,4.9,29,3.496,45,1.03,51,0.396,225,1.776,390,1.889,397,0.993,423,1.69,1034,2.894,1361,1.022,2488,7.142]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[58,1.912,157,1.85,495,3.62,499,2.041,2081,4.113,2082,3.163,2388,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2493,5.627]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[3,2,17,1.334,26,0.056,51,0.519,58,2.192,87,3.979,225,1.709,272,2.452,397,0.955,422,3.59,799,1.912,1361,0.983,1414,5.943,2082,6.05,2085,4.614,2086,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2388,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[5,0.967,26,0.058,51,0.603,331,3.73,351,1.896,397,0.993,486,3.256,499,2.431,529,3.849,660,2.665,1361,1.022,2091,6.228,2095,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2416,2.542,2417,2.506]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[5,0.967,26,0.058,51,0.603,331,3.73,351,1.896,397,0.993,486,3.256,499,2.431,529,3.849,660,2.665,1361,1.022,2091,6.228,2095,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2488,4.497,2490,5.63,2491,5.63,2494,7.051]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[28,0.787,2416,3.4,2417,3.352,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2488,4.497,2490,5.63,2491,5.63,2495,7.051]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[28,0.787,2139,3.219,2274,3.119,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2488,4.497,2490,5.63,2491,5.63,2496,7.051]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2416,2.542,2417,2.506]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2497,5.173]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[3,1.963,17,1.309,26,0.055,51,0.374,87,3.906,225,1.678,272,2.407,295,2.989,340,2.372,397,0.938,410,4.629,422,3.524,799,1.877,1361,0.965,1414,5.868,2066,4.353,2082,5.578,2085,4.529,2086,4.629]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[4,2.246,5,1.018,6,3.063,890,5.581]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[242,4.348,393,4.199,890,5.005,2431,5.965,2498,6.478]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[4,2.457,5,1.113,6,3.35,16,2.269,35,2.864,45,0.822,56,2.218,376,3.676,447,3.39,495,3.44,591,4.544,890,8.314,1606,5.043,2065,4.231,2189,4.544,2499,5.477,2500,7.276,2501,9.271,2502,5.477,2503,5.477,2504,5.477,2505,5.477]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[91,1.112,672,2.589,2227,2.169,2350,2.489,2380,4.935,2506,5.69]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[905,4.933,2117,6.176,2380,6.176]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[26,0.078,94,3.57,397,1.33,718,2.762,1361,1.369,2380,7.345]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[5,0.715,17,1.025,28,0.554,418,3.546,2051,3.348,2052,3.292,2053,4.677,2139,2.263,2274,2.193]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[5,0.761,17,1.09,28,0.589,418,3.77,2051,3.559,2052,3.5,2416,2.542,2417,2.506]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[26,0.063,51,0.628,54,2.625,295,3.432,340,2.724,392,2.59,799,2.155,2051,4.909,2052,7.497,2066,4.998]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2139,2.568,2274,2.488]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[28,0.653,1709,4.099,1881,3.883,2400,5.517,2507,4.629,2508,5.517]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[91,0.972,198,2.726,199,2.096,269,0.745,2227,1.895,2350,2.175,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[17,1.71,21,1.844,22,1.473,26,0.09,45,0.907,51,0.348,90,1.835,199,2.344,202,4.311,269,1.17,272,2.242,397,0.873,423,1.487,799,1.748,1361,0.899,2510,4.667,2513,6.546,2515,5.247,2516,5.247]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[28,0.589,198,2.726,199,2.096,269,0.745,2139,2.406,2274,2.331,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[17,1.651,21,1.78,22,1.401,26,0.088,45,0.862,51,0.331,90,1.745,199,2.23,202,4.1,269,1.129,272,2.132,295,2.647,340,2.101,397,0.831,423,1.414,799,1.662,1361,0.855,2066,3.856,2510,4.438,2513,6.318,2515,4.99,2516,4.99]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[58,2.05,159,1.737,1281,3.542,1986,3.673,1987,4.005,2227,2.169]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2517,4.889,2518,4.502]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[26,0.091,45,1.28,51,0.491,87,5.136,338,4.105,718,2.562,1986,6.332]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2139,2.406,2274,2.331]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1033,6.096,2051,5.201,2052,5.114]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2052,5.552,2117,6.84]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[850,0.477]],["title//docs/databases/redis/redis-on-centos-5/",[159,2.218,191,4.164,2227,2.769]],["keywords//docs/databases/redis/redis-on-centos-5/",[22,1.579,191,3.419,904,3.271,2040,4.623,2519,6.478]],["toc//docs/databases/redis/redis-on-centos-5/",[26,0.046,40,2.372,51,0.311,56,2.184,63,1.901,94,2.093,120,2.365,130,1.619,131,2.557,142,1.954,191,5.645,205,3.338,227,1.56,234,2.991,264,2.901,332,1.323,351,1.489,392,1.876,428,3.439,529,3.023,799,2.261,858,2.468,1049,2.041,1086,3.023,1852,2.795,2041,5.577]],["deprecated//docs/databases/redis/redis-on-centos-5/",[850,0.477]],["title//docs/databases/redis/redis-on-fedora-13/",[157,2.532,191,4.164,2388,4.33]],["keywords//docs/databases/redis/redis-on-fedora-13/",[22,1.579,191,3.419,904,3.271,2040,4.623,2520,6.478]],["toc//docs/databases/redis/redis-on-fedora-13/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[28,0.787,191,3.812,2416,3.4,2417,3.352]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[22,1.579,904,3.271,2040,4.623,2521,6.478,2522,5.965]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[157,1.733,199,2.096,269,0.745,270,1.387,392,1.878,1258,2.994,2388,2.963,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[26,0.069,45,1.221,51,0.469,269,1.427,270,2.657,397,1.176,423,2.003,1258,4.512,1361,1.211]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,474,3.232,1206,3.292,2139,2.754,2274,2.668]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[28,0.589,198,2.726,199,2.096,269,0.745,2416,2.542,2417,2.506,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[17,1.651,21,1.78,22,1.401,26,0.088,45,0.862,51,0.331,90,1.745,199,2.23,202,4.1,269,1.129,272,2.132,295,2.647,340,2.101,397,0.831,423,1.414,799,1.662,1361,0.855,2066,3.856,2510,4.438,2513,6.318,2515,4.99,2516,4.99]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[335,4.848,486,3.425,632,4.762,672,3.027]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[338,3.394,632,4.648,672,2.954,992,4.497]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[4,1.334,5,0.787,6,1.071,16,1.047,17,0.51,26,0.022,28,0.275,31,1.522,32,0.753,38,1.542,51,0.247,54,1.97,63,0.891,75,1.764,77,2.097,91,0.455,114,1.896,120,1.298,125,3.136,157,0.811,159,0.71,175,1.483,197,1.764,205,4.963,218,1.696,272,0.938,335,5.382,336,1.587,338,1.216,339,4.894,362,2.488,372,1.696,373,2.995,478,1.666,563,2.195,566,1.764,570,2.223,632,7.257,644,1.483,656,1.896,663,1.522,672,1.059,800,1.235,907,1.483,1077,1.449,1109,4.943,1299,3.95,1326,1.322,1406,2.195,1418,5.147,1436,1.502,1442,2.327,1488,2.018,1893,2.195,2523,2.327,2524,2.527,2525,2.527,2526,2.527,2527,2.527,2528,2.527]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,474,3.232,1206,3.292,2416,2.909,2417,2.868]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[26,0.062,51,0.42,63,2.571,199,2.83,214,3.779,224,4.229,269,1.007,310,3.25,415,4.989,446,4.439,721,6.113,1206,5.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[28,0.674,47,1.214,474,3.232,1206,3.292,2139,2.754,2274,2.668]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[28,0.787,191,3.812,2139,3.219,2274,3.119]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[22,1.579,904,3.271,2040,4.623,2522,5.965,2529,6.478]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[26,0.067,51,0.455,551,4.423]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[553,5.627,554,5.627,556,5.627,2530,6.478,2531,6.478]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[26,0.078,33,2.144,34,2.165,51,0.53,551,6.255]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[65,1.158,159,2.031,1187,3.679,2227,2.535]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[21,1.174,22,1.315,26,0.067,45,0.809,47,1.806,51,0.311,63,3.239,65,1.253,95,1.632,130,1.619,142,1.954,193,1.549,225,1.395,227,1.56,270,1.386,332,1.323,351,1.489,357,2.357,390,1.484,397,0.78,423,1.328,799,1.56,858,2.468,1049,2.041,1178,2.082,1361,0.802,1701,4.047]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[850,0.477]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[91,1.3,191,3.812,2227,2.535,2350,2.91]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[22,1.579,904,3.271,2040,4.623,2532,6.478,2533,6.478]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[157,2.318,269,0.997,274,4.471,1182,4.049]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[29,3.299,2396,5.627,2534,6.478,2535,6.478,2536,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[5,1.231,26,0.074,90,2.655,269,1.207,397,1.264,1182,6.063,1361,1.301]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[157,2.318,269,0.997,1182,4.049,2388,3.965]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[29,3.299,2396,5.627,2537,6.478,2538,6.478,2539,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[5,1.231,26,0.074,90,2.655,269,1.207,397,1.264,1182,6.063,1361,1.301]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[28,0.726,269,0.92,1182,3.734,2139,2.968,2274,2.876]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[29,3.299,1984,5.965,1985,5.173,2540,6.478,2541,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[28,0.726,269,0.92,1182,3.734,2416,3.136,2417,3.091]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[29,3.299,1985,5.173,2542,6.478,2543,6.478,2544,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[5,1.12,26,0.087,29,4.049,90,2.415,269,1.098,397,1.15,1182,5.712,1361,1.183,1409,5.439,2349,5.967]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[4,1.792,104,2.839,129,3.196,858,2.638,927,3.383,1326,3.014,1582,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[859,4.305,860,4.305,861,4.182,862,3.977,1326,2.914,1583,4.45,1584,4.45]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[104,2.839,129,3.196,159,1.62,232,2.415,858,2.638,927,3.383,1582,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[159,1.566,859,4.305,860,4.305,861,4.182,862,3.977,1583,4.45,1584,4.45]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[104,3.045,129,3.427,392,2.149,858,2.828,927,3.628,1582,4.411]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[859,4.629,860,4.629,861,4.496,862,4.276,1583,4.784,1584,4.784]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,2.246,65,1.158,1187,3.679,1326,3.777]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[21,1.495,22,1.674,26,0.079,45,1.03,47,1.818,51,0.396,63,2.42,65,1.484,193,1.972,225,1.776,270,1.764,390,1.889,397,0.993,423,1.69,1178,2.651,1361,1.022]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[850,0.477]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[6,2.824,7,3.91,619,4.651,2421,4.998,2545,5.786]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[72,4.303,2545,6.124,2546,7.051,2547,6.492]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[3,3.075,5,1.432,6,2.75,7,3.807,218,4.353,259,4.629,455,4.074,656,4.867,661,4.074,824,5.381,2545,10.285,2548,6.486,2549,5.972]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,2.186,415,4.942,416,4.409,2550,5.993]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[6,2.989,1528,5.85,2551,7.051,2552,7.051]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,3.179,4,2.351,5,1.065,6,2.186,16,2.136,25,3.6,54,1.817,197,3.6,223,3.6,303,3.769,320,3.399,401,3.105,416,6.411,455,3.238,478,3.399,629,3.68,643,4.478,660,2.001,865,4.478,1082,3.527,2550,7.43,2553,5.156,2554,4.747,2555,5.156]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,2.388,619,5.509,913,5.631]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,1.96,139,4.523,913,4.623,992,4.132,2547,5.965]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[1,5.222,3,2.162,5,1.006,6,4.029,698,3.143,898,5.222,913,8.456,992,6.06,2307,5.361,2556,6.206,2557,7.145]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[65,1.158,157,2.318,1187,3.679,2388,3.965]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[21,1.192,22,1.335,26,0.067,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,157,1.758,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,397,0.792,799,1.585,858,2.506,1049,2.072,1178,2.115,1361,0.815]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[28,0.726,65,1.068,1187,3.392,2139,2.968,2274,2.876]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[54,2.032,91,1.037,740,4.325,776,2.06,1066,2.17,2227,2.022,2350,2.321]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[91,0.972,168,2.774,235,2.506,276,3.17,672,2.263,2227,1.895,2350,2.175,2558,4.69]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[168,3.328,1643,5.374,2558,5.627,2559,6.478,2560,6.478]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[3,1.828,26,0.083,51,0.611,56,2.447,65,0.969,193,1.735,198,3.05,246,4.311,351,1.668,392,2.101,397,0.873,487,3.424,718,1.814,942,4.824,1044,2.93,1361,0.899,2556,5.247,2558,9.214]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[65,1.068,91,1.199,1187,3.392,2227,2.338,2350,2.683]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[21,1.09,22,1.221,26,0.063,45,0.752,47,1.731,51,0.289,63,3.429,65,1.187,91,1.332,95,2.24,130,1.504,142,1.815,193,1.439,225,1.296,227,1.449,270,1.287,332,1.229,351,1.383,357,2.19,390,1.378,397,0.724,423,1.233,799,1.449,858,2.292,1024,4.351,1049,1.895,1178,1.934,1361,0.745,2561,5.009]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.554,193,1.459,224,2.946,270,1.305,1178,1.961,1194,2.502,2068,2.787,2139,2.263,2274,2.193]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1881,3.883,2480,5.517,2481,5.517,2507,4.629,2562,5.517,2563,5.517]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[26,0.071,51,0.605,90,2.53,95,2.52,272,3.09,397,1.204,552,4.437,718,2.501,1361,1.239]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[21,1.345,157,1.983,776,2.208,1066,2.327,2298,3.464,2388,3.392]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2564,4.889,2565,3.777,2566,3.777,2567,3.777,2568,3.777]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[5,1.032,17,0.997,21,2.103,26,0.062,32,2.184,45,1.1,51,0.557,90,1.5,95,1.494,149,2.559,198,2.494,272,1.833,390,1.359,397,0.714,402,3.474,446,2.276,697,1.851,777,2.094,786,1.86,1066,3.289,1361,0.735,1597,3.014,2244,3.378,2298,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,2388,3.392]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[700,6.176,2391,7.122,2569,7.735]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[12,2.729,16,2.419,26,0.082,51,0.602,56,2.365,65,0.936,225,1.511,269,1.326,273,2.62,337,2.71,345,3.85,390,1.607,397,0.844,400,3.387,482,2.811,642,3.668,924,4.382,963,2.637,1361,0.869,1561,4.168,2392,4.382]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,2388,3.392]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1854,5.976,1855,6.417,2570,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[5,1.072,21,2.397,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132,1692,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[850,0.477]],["title//docs/databases/postgresql/fedora-13/",[5,0.871,22,1.507,46,2.668,157,1.983,1074,3.357,2388,3.392]],["keywords//docs/databases/postgresql/fedora-13/",[1076,4.721,1170,5.191,2571,7.735]],["toc//docs/databases/postgresql/fedora-13/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[47,1.309,157,2.138,270,1.712,1178,2.572,2388,3.656]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[47,1.386,1537,4.139,1538,4.732,2572,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,270,1.874,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[47,1.309,157,2.138,1178,2.572,1837,3.282,2388,3.656]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[47,1.386,1537,4.139,2025,4.923,2572,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,272,2.706,351,2.014,397,1.054,552,3.885,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[5,0.761,40,2.375,157,1.733,206,3.342,235,2.506,2087,2.905,2088,3.854,2388,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,719,2.733,2388,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[65,0.991,157,1.983,193,1.775,305,3.147,2068,3.392,2388,3.392]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2068,3.87,2482,6.492,2493,6.124,2573,6.492]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[26,0.06,45,1.051,51,0.403,151,4.334,174,3.566,332,2.301,397,1.012,423,1.724,660,3.639,754,5.803,814,6.414,1361,1.042,2068,5.146]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[65,0.991,157,1.983,193,1.775,305,3.147,2068,3.392,2273,3.392]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2068,3.87,2318,5.85,2573,6.492,2574,7.051]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[26,0.06,45,1.051,51,0.403,151,4.334,174,3.566,332,2.301,397,1.012,423,1.724,660,3.639,754,5.803,814,6.414,1361,1.042,2068,5.146]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2575,6.275]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[91,1.166,2575,5.627,2576,6.478,2577,6.478,2578,6.478]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[26,0.078,90,2.794,194,7.107,397,1.33,1361,1.369,2575,7.99]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[21,1.345,157,1.983,274,3.825,776,2.208,1066,2.327,2298,3.464]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2579,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[5,1.032,17,0.997,21,2.103,26,0.062,32,2.184,45,1.1,51,0.557,90,1.5,95,1.494,149,2.559,198,2.494,272,1.833,390,1.359,397,0.714,402,3.474,446,2.276,697,1.851,777,2.094,786,1.86,1066,3.289,1361,0.735,1597,3.014,2244,3.378,2298,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[28,0.674,58,2.05,227,1.788,1201,3.673,2139,2.754,2274,2.668]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[17,0.983,26,0.092,51,0.499,54,1.717,59,2.825,94,1.89,137,2.76,142,1.765,149,1.701,198,3.661,310,2.17,371,3.476,392,1.694,397,0.704,718,1.463,777,2.065,799,1.409,958,5.79,1082,3.332,1201,6.804,1359,5.062,1361,0.725,1757,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[65,1.158,157,2.318,769,3.198,2388,3.965]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1799,5.154,1800,5.291,2580,7.051,2581,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[47,1.42,157,2.318,305,3.679,2388,3.965]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[47,1.177,337,2.78,713,2.976,2403,5.204,2493,5.204,2572,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[17,1.241,26,0.084,47,2.101,56,2.489,94,2.385,95,1.86,120,1.86,130,1.846,131,2.914,227,1.778,332,1.508,357,2.687,397,0.889,718,1.846,799,1.778,858,2.813,1049,2.326,1361,0.915,1701,4.612,1852,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[28,0.674,65,0.991,227,1.788,2139,2.754,2190,4.411,2274,2.668]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[227,2.478,2190,6.113]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2139,2.754,2274,2.668,2296,3.628]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[159,1.872,269,0.92,606,4.123,1313,3.07,2227,2.338]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[26,0.083,45,1.118,51,0.563,63,2.625,199,3.79,269,1.348,310,3.318,423,1.833,812,3.825,1313,4.5]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,606,3.825,1313,2.848,2139,2.754,2274,2.668]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,606,3.825,1313,2.848,2416,2.909,2417,2.868]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[26,0.087,51,0.587,199,3.086,269,1.098,310,3.543,397,1.15,812,4.084,1313,4.696,1361,1.183]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[28,0.628,227,1.668,763,4.113,1958,4.325,2061,4.113,2139,2.568,2274,2.488]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[28,0.706,2061,4.623,2062,5.627,2274,2.797,2507,5.005]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[5,0.897,26,0.075,45,0.956,51,0.58,187,3.189,295,2.935,310,2.838,340,2.33,397,0.921,410,4.545,596,4,718,1.913,1357,5.085,1361,0.948,2061,6.274,2063,5.284,2065,4.92,2066,4.274,2582,5.864]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,1313,2.848,2139,2.754,2274,2.668,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[28,0.607,55,2.232,269,0.769,1313,2.568,2274,2.406,2508,5.131,2584,4.45]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[5,0.931,26,0.056,45,0.992,51,0.381,55,2.647,142,2.394,199,2.565,214,3.424,225,2.332,269,0.912,310,2.944,351,1.825,397,0.955,423,1.627,722,3.255,1313,4.729,1361,0.983,1436,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[91,1.112,269,0.853,606,3.825,1313,2.848,2227,2.169,2350,2.489]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[850,0.477]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[5,0.761,47,1.061,49,2.303,329,3.77,507,4.052,799,1.562,2430,4.172,2585,4.69]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[47,0.856,49,1.858,269,0.601,337,2.021,341,1.916,508,5.321,713,2.163,2586,4.355,2587,4.355,2588,4.355]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[47,1.323,49,2.872,51,0.388,54,2.374,58,2.234,83,4.003,269,0.93,329,6.376,337,3.125,341,2.962,362,3.906,446,3.103,507,6.853,718,2.022,799,1.948,2036,4.702,2430,5.203,2585,5.849]],["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/",[91,1.037,905,3.676,2227,2.022,2350,2.321,2589,5.764,2590,5.764,2591,5.307]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2592,7.051,2593,7.051,2594,7.051,2595,5.447]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[26,0.081,51,0.412,63,2.518,94,2.773,130,2.146,199,2.773,227,2.067,332,1.753,397,1.033,718,2.146,799,2.749,1049,2.704,1361,1.063,2591,8.75]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[28,0.674,332,1.516,741,3.12,905,3.941,2139,2.754,2274,2.668]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[28,0.653,469,3.105,672,2.51,741,3.025,2507,4.629,2596,5.992]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[28,0.674,776,2.208,1194,3.045,2014,3.673,2139,2.754,2274,2.668]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[2014,3.851,2017,4.432,2018,4.861,2597,6.478,2598,5.965]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[26,0.061,45,1.072,340,2.613,392,3.305,397,1.033,423,1.759,944,5.099,963,3.226,992,4.557,1361,1.063,1638,4.422,1814,4.422,2014,6.346,2019,5.222]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[21,1.175,28,0.589,776,1.93,1066,2.033,1194,2.66,1593,2.85,2139,2.406,2274,2.331]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[28,0.607,776,1.991,1593,2.941,2274,2.406,2598,5.131,2599,5.573,2600,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[28,0.628,286,3.071,950,3.567,2306,4.602,2307,4.325,2416,2.713,2417,2.675]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1076,3.401,2311,4.84,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2601,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[28,0.589,286,2.877,950,3.342,1194,2.66,2139,2.406,2274,2.331,2306,4.312,2307,4.052]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1076,3.401,2311,4.84,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2602,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2139,2.406,2274,2.331]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[2001,5.509,2002,5.397,2603,6.853]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[2002,4.823,2603,6.124,2604,7.051,2605,6.492]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2603,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1403,5.993,2001,5.044,2002,6.548]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[769,2.868,1403,5.374,2605,5.965,2606,6.478,2607,6.478]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[26,0.095,397,1.33,718,2.762,1361,1.369,1403,7.631]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[28,0.589,776,1.93,1034,2.276,1194,2.66,1379,3.559,2139,2.406,2274,2.331,2359,4.312]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1596,4.276,2363,4.784,2364,4.784,2608,5.992,2609,5.992,2610,5.517]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[28,0.589,58,1.791,1194,2.66,1281,3.095,1986,3.21,1987,3.5,2139,2.406,2274,2.331]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2611,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[120,2.186,193,2.075,722,3.559,2612,6.275]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[270,1.665,687,5.627,690,3.901,1180,4.27,2612,5.627]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2612,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2139,2.568,2274,2.488]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.628,47,1.133,1178,2.225,1194,2.839,1837,2.839,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2613,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[12,2.245,17,0.97,26,0.081,28,0.782,35,3.753,45,0.721,47,0.944,51,0.549,72,2.932,90,1.459,95,1.454,177,4.731,225,1.243,272,1.783,340,1.757,390,1.322,397,0.695,423,1.183,499,1.701,552,2.559,1178,1.855,1361,0.715,1433,3.017,1792,4.173,1793,5.954,1837,2.367,2300,3.114,2387,3.605,2614,7.177,2615,4.804]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[28,0.523,199,1.861,269,0.662,270,1.232,392,1.667,1194,2.362,1258,2.659,2139,2.136,2274,2.07,2409,3.422]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1700,2.623,1869,3.812,1870,3.812,2412,4.073,2413,4.073,2616,5.573,2617,5.573]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[26,0.058,45,1.03,51,0.396,269,1.277,270,2.378,273,3.079,295,3.164,340,3.384,397,0.993,423,1.69,1258,3.808,1281,3.936,1361,1.022,1872,5.152,2066,4.608,2414,5.482]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[28,0.589,59,3.132,65,0.866,777,2.289,1194,2.66,1997,3.21,2139,2.406,2274,2.331]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2249,4.84,2250,4.623,2618,5.573]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[120,1.87,276,3.628,368,4.005,2290,6.651,2619,5.69]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2294,5.173,2620,6.478,2621,5.965,2622,6.478,2623,6.478]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[26,0.087,130,2.388,227,2.301,332,1.951,397,1.15,718,2.388,799,2.301,1049,3.009,1361,1.183,2290,6.143,2619,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[850,0.477]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[120,2.016,276,3.91,368,4.317,2290,5.146,2624,5.786]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2294,5.63,2621,6.492,2624,6.124,2625,7.051]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2624,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2139,2.263,2274,2.193]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2139,2.406,2274,2.331]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[5,0.715,28,0.554,278,2.732,499,1.798,1194,2.502,2091,2.706,2092,3.474,2139,2.263,2274,2.193]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[28,0.589,65,0.866,193,1.551,305,2.75,1194,2.66,2068,2.963,2139,2.406,2274,2.331]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1881,4.199,2068,3.555,2507,5.005,2562,5.965,2563,5.965]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[26,0.056,45,0.992,51,0.381,95,2,151,4.09,174,3.365,332,2.212,357,2.889,397,0.955,423,1.627,660,3.499,754,5.58,814,6.167,1027,3.394,1361,0.983,2068,4.948]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[46,2.193,65,0.814,120,1.537,170,2.946,228,2.445,332,1.246,363,3.058,639,3.019,2626,3.924]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2074,5.173,2626,5.005,2627,6.478,2628,5.965,2629,5.965]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[5,1.263,26,0.076,51,0.516,665,4.021,1107,5.138,2626,8.487]],["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/",[5,0.761,21,1.175,22,1.316,28,0.589,1074,2.934,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1475,4.648,2096,5.447,2097,5.154,2630,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[5,1.146,21,2.474,26,0.069,51,0.596,54,2.868,351,2.247,397,1.176,1361,1.211]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[28,0.589,65,0.866,193,1.551,231,2.704,269,0.745,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[269,0.827,713,2.976,2009,4.379,2631,5.992,2632,5.992,2633,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[28,0.726,1044,3.231,1194,3.282,2139,2.968,2274,2.876]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2230,6.417,2231,6.417,2634,7.735]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[351,2.608,982,7.088,1044,4.581,2137,7.836,2451,8.204]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[28,0.628,120,1.744,391,3.735,720,3.518,1194,2.839,2139,2.568,2274,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2635,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,0.761,22,1.316,28,0.589,46,2.331,1074,2.934,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[46,2.587,1075,4.784,1076,3.657,1170,4.021,2636,5.992,2637,5.992]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[28,0.674,47,1.214,305,3.147,1194,3.045,2139,2.754,2274,2.668]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[28,0.607,47,1.095,337,2.586,713,2.768,2507,4.305,2613,4.84,2638,5.573]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[17,1.199,26,0.083,28,0.647,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[219,5.156,672,3.027,1686,6.275,2639,5.993]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2639,5.85,2640,6.492,2641,6.492,2642,6.492]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[4,1.113,5,0.806,15,2.45,26,0.069,51,0.33,72,2.186,83,2.129,170,2.077,174,2.912,219,2.556,225,0.927,235,1.662,303,2.618,326,6.883,345,2.361,351,1.579,363,2.157,403,2.556,639,2.129,672,3.415,702,3.111,771,1.793,907,2.102,925,3.298,929,2.86,1011,3.111,1441,3.298,1674,3.298,2012,3.298,2095,1.927,2441,3.298,2442,3.298,2478,5.266,2639,8.854,2641,3.298,2642,3.298,2643,3.582,2644,3.582,2645,3.582,2646,3.582,2647,3.582,2648,3.582,2649,3.582]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,0.812,22,1.405,46,2.488,174,2.935,228,2.774,660,2.237,2626,4.453]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2074,4.784,2626,4.629,2628,5.517,2629,5.517,2650,5.992,2651,5.992]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.263,26,0.076,51,0.516,665,4.021,1107,5.138,2626,8.487]],["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/",[91,1.037,776,2.06,1034,2.429,1379,3.799,2227,2.022,2350,2.321,2359,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1596,4.276,2362,5.517,2363,4.784,2364,4.784,2652,5.992,2653,5.992]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[120,2.016,131,3.159,169,3.959,486,3.159,2654,5.786]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1222,4.024,1641,4.159,1642,4.159,2654,4.524,2655,5.209,2656,4.796,2657,4.796,2658,5.209]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[3,2.418,17,1.888,26,0.047,38,3.395,116,4.067,131,2.638,228,2.678,278,2.993,295,3.683,313,4.442,454,4.615,694,2.964,722,3.937,1432,4.832,1826,6.174,1918,6.942,2421,4.175,2484,3.971,2523,5.123,2654,8.88,2659,5.123]],["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/",[28,0.589,58,1.791,63,1.903,1334,4.312,1390,3.947,1779,4.172,2416,2.542,2417,2.506]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1334,4.45,1390,4.073,1394,4.84,1779,4.305,2660,5.573,2661,5.573,2662,5.573]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[2,3.926,17,1.543,26,0.085,32,1.56,45,0.785,51,0.572,94,2.031,104,2.578,149,1.828,273,2.347,286,4.073,288,2.999,357,2.287,397,0.756,530,3.151,533,3.391,718,1.571,769,2.317,800,2.558,927,3.072,1361,0.779,1390,5.588,1402,4.818,1779,5.906,1783,4.818]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[58,2.05,91,1.112,227,1.788,1201,3.673,2227,2.169,2350,2.489]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[26,0.09,51,0.52,54,1.844,59,3.035,94,2.031,137,2.966,142,1.896,198,3.86,371,3.734,392,1.82,397,0.756,718,1.571,777,2.218,799,1.514,958,6.104,1201,6.945,1359,5.337,1361,0.779,1757,3.653]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.628,47,1.133,270,1.481,1178,2.225,1194,2.839,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[47,1.386,1537,4.139,1538,4.732,2613,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[3,2.388,2663,7.265,2664,6.853]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[19,3.451,91,1.166,2595,5.005,2664,5.627,2665,6.478]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[4,2.177,26,0.08,28,0.763,91,1.26,119,2.143,157,2.247,159,1.968,278,3.767,596,4.398,1326,3.662,2139,3.12,2227,3.29,2274,3.023,2350,2.821,2664,8.144]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[850,0.477]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[21,1.573,22,1.761,31,4.35,32,2.153]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[19,4.121,21,1.684,24,6.176]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[3,0.686,5,1.206,12,1.827,16,3.545,17,1.876,19,5.595,21,1.646,22,1.494,24,4.894,25,5.655,40,2.267,120,1.183,187,2.58,231,3.069,245,5.975,351,1.079,453,6.961,906,2.533,943,1.969,1077,4.333,1535,1.424,1692,1.701,1958,2.933,2666,2.267,2667,6.914,2668,6.129,2669,3.909,2670,3.909,2671,2.267,2672,2.087,2673,2.267]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[850,0.477]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[91,1.112,119,1.892,120,1.87,2227,2.169,2296,3.628,2350,2.489]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2296,3.628,2416,2.909,2417,2.868]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/wikis/dokuwiki-engine/",[419,8.004,2674,8.004]],["keywords//docs/websites/wikis/dokuwiki-engine/",[270,1.988,2048,4.658,2675,7.735]],["toc//docs/websites/wikis/dokuwiki-engine/",[26,0.091,130,2.562,227,2.468,332,2.093,718,2.562,799,2.468,1049,3.228,2674,7.854]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[21,1.345,28,0.674,120,1.87,1849,3.232,2416,2.909,2417,2.868]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[21,1.535,28,0.769,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[3,2.078,26,0.079,51,0.533,90,2.085,142,2.488,269,0.948,295,3.164,332,1.685,334,4.794,340,2.511,642,4.312,697,2.573,1849,5.856,2676,6.322]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[120,2.016,193,1.913,270,1.712,722,3.282,2677,6.134]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[690,4.246,769,3.122,2678,7.051,2679,7.051]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[26,0.087,130,2.388,227,2.301,270,2.043,332,1.951,397,1.15,718,2.388,799,2.301,1049,3.009,1361,1.183,2677,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[850,0.477]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[159,2.218,2227,2.769,2305,5.201]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[67,3.561,140,3.561,159,1.684,1632,4.784,2305,3.95,2680,5.517]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[12,2.729,17,1.179,26,0.082,37,3.387,45,0.877,51,0.477,56,2.365,90,1.774,225,1.511,269,0.806,272,2.167,332,1.433,390,1.607,404,4.078,423,1.438,584,3.85,799,1.69,1535,3.668,1848,4.168,2305,7.551]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[850,0.477]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[91,1.3,1319,4.19,2227,2.535,2350,2.91]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[850,0.477]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[120,2.186,273,3.24,2681,6.652,2682,6.652]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1837,3.811,2681,7.122,2683,7.735]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[5,1.049,26,0.098,54,2.625,74,5.315,95,2.253,228,3.584,310,3.318,397,1.077,400,4.319,2682,8.992,2684,7.447]],["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/",[5,0.761,17,1.09,91,0.972,418,3.77,2051,3.559,2052,3.5,2227,1.895,2350,2.175]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[159,1.872,2001,4.651,2002,4.557,2003,4.065,2227,2.338]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[51,0.48,94,3.232,130,2.501,227,2.41,332,2.043,581,5.944,718,2.501,799,2.41,1049,3.151,2003,5.083]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[850,0.477]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[5,0.812,120,1.744,205,3.567,376,3.868,380,4.113,752,3.799,1760,3.943]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[4,2.014,376,4.348,752,4.27,937,4.523,2685,6.478]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[5,0.931,6,2.802,26,0.056,54,2.329,120,2,129,3.665,144,5.276,380,4.716,455,4.15,478,4.356,665,2.964,752,8.034,1760,4.52,2421,4.958,2686,6.608]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2047,5.546]],["keywords//docs/websites/wikis/twiki/",[476,4.246,1837,3.474,2047,4.042,2048,4.246]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[850,0.477]],["title//docs/applications/messaging/advanced-irssi-usage/",[74,5.631,83,4.69,2687,6.3]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1497,4.629,1757,4.183,1758,5.204,1759,5.204,2687,4.784,2688,5.517]],["toc//docs/applications/messaging/advanced-irssi-usage/",[5,1.202,137,4.834,262,3.931,283,7.409,397,1.233,1361,1.269,1488,6.811,1504,6.811,1597,5.206]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[5,0.938,659,5.526,1071,5.526,1497,5.146,2687,5.319]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1497,4.629,1757,4.183,1758,5.204,1759,5.204,2687,4.784,2688,5.517]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[6,2.037,26,0.041,51,0.495,54,1.693,59,2.786,74,3.429,110,1.99,120,2.172,137,2.723,149,1.678,174,3.655,208,3.985,478,4.731,672,3.007,683,5.954,694,2.559,718,1.443,990,4.173,1281,2.754,1757,5.011,1763,4.423,1765,6.608,2421,3.605,2687,8.144,2689,4.804,2690,4.804,2691,4.804,2692,4.804]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,0.812,40,2.535,159,1.62,199,2.237,264,3.1,719,2.733,2227,2.022]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2416,2.542,2417,2.506]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[5,0.761,49,2.303,58,1.791,91,0.972,269,0.745,341,2.375,2227,1.895,2350,2.175]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[5,0.716,31,3.06,49,3.191,58,1.685,63,1.791,65,0.815,226,3.02,241,3.293,269,0.701,341,2.235,372,3.41,395,2.733,397,0.735,596,3.191,628,3.145,649,3.548,675,3.627,722,4.375,1108,3.06,1361,0.756,1436,4.447,1658,3.35,2008,2.818,2056,7.008,2057,3.627,2058,3.714,2059,3.714,2060,3.714,2430,3.926]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2416,2.542,2417,2.506]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[157,2.532,274,4.884,2054,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[157,1.788,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2486,4.45]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[28,0.787,2054,3.965,2416,3.4,2417,3.352]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2417,2.586]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,274,3.567,719,2.733]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[5,0.812,49,2.458,58,1.912,159,1.62,269,0.796,341,2.535,2227,2.022]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[5,0.737,31,3.151,49,3.261,58,1.736,63,1.844,65,0.839,226,3.11,241,3.391,269,0.722,341,2.302,372,3.512,395,2.815,596,3.286,628,3.239,649,3.653,675,3.734,722,4.45,1108,3.151,1436,4.544,1658,3.449,2008,2.902,2056,7.092,2057,3.734,2058,3.825,2059,3.825,2060,3.825,2430,4.042]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2416,2.542,2417,2.506]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[26,0.065,51,0.672,225,1.968,390,2.094,397,1.1,628,4.709,777,3.226,1361,1.132,2079,6.72]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-mybb/",[2001,5.509,2002,5.397,2693,6.853]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[270,1.812,1700,3.319,2004,5.154,2693,6.124]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[26,0.071,130,2.501,227,2.41,332,2.043,397,1.204,718,2.501,799,2.41,1049,3.151,1361,1.239,2693,7.234]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[850,0.477]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[4,1.792,26,0.049,202,4.113,596,3.62,2001,4.024,2002,3.943,2694,5.006]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[270,1.812,1700,3.319,2004,5.154,2694,6.124]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[26,0.085,718,2.997,2694,8.67]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1039,3.82]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[47,1.309,157,2.138,270,1.712,274,4.123,1178,2.572]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[47,1.386,1537,4.139,1538,4.732,2695,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,270,1.874,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[47,1.309,157,2.138,274,4.123,1178,2.572,1837,3.282]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[47,1.386,1537,4.139,2025,4.923,2695,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[26,0.061,51,0.615,54,2.518,90,2.17,95,2.162,225,1.848,272,2.651,351,1.973,390,1.966,397,1.033,1178,3.669,1361,1.063,1562,5.222,1837,3.52]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[5,0.812,49,2.458,58,1.912,157,1.85,269,0.796,274,3.567,341,2.535]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[21,1.255,28,0.628,776,2.06,1066,2.17,1593,3.042,2416,2.713,2417,2.675]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1596,4.623,2696,5.965,2697,6.478,2698,6.478,2699,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[5,0.677,17,0.97,21,1.87,26,0.041,32,2.139,45,1.077,51,0.588,54,1.693,90,2.18,95,1.454,149,2.507,272,1.783,351,1.327,390,1.322,397,0.695,402,3.403,446,2.214,697,1.8,698,2.113,777,2.037,786,1.809,1027,2.468,1066,3.235,1361,0.715,1593,2.535,1597,2.932,1598,3.512,2244,3.286]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[159,1.872,231,3.335,269,0.92,697,2.496,786,2.508]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[713,2.976,902,4.183,1036,4.784,1709,4.099,1710,5.517,2700,4.971]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[157,1.983,231,3.094,269,0.853,274,3.825,697,2.316,786,2.327]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[713,3.502,1709,4.823,1711,6.124,2486,5.63]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2416,2.713,2417,2.675]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[28,0.607,697,2.088,1709,3.812,1715,5.131,1881,3.612,2497,4.45,2701,4.623]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[159,1.872,332,1.634,741,3.363,905,4.248,1034,2.808]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[159,1.982,469,3.654,672,2.954,741,3.56]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[5,0.659,26,0.04,51,0.405,75,3.265,89,3.199,128,4.911,182,3.65,187,2.341,228,2.251,262,4.333,332,1.726,336,2.937,390,1.287,439,2.816,469,3.645,539,4.293,672,2.947,741,4.268,771,3.522,786,2.648,1001,3.338,1002,3.338,1009,3.338,1105,4.558,1107,2.681,1925,3.418,1926,3.509]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[47,1.42,159,2.031,305,3.679,2227,2.535]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[47,1.177,159,2.368,337,2.78,713,2.976,2700,4.971]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1701,4.456,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[51,0.455,269,1.089,452,6.096]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[51,0.446,269,1.068,1713,5.099]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[3,2.302,12,3.556,16,4.831,532,5.878,642,4.778,1420,5.878,2307,5.709,2334,6.608,2556,6.608,2702,7.608,2703,7.608]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[120,2.186,269,0.997,763,5.156,2704,6.275]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[3,1.686,120,1.686,269,0.769,337,2.586,726,5.131,763,3.977,2704,4.84]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[17,2.074,1597,6.27]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[91,1.112,332,1.516,741,3.12,905,3.941,2227,2.169,2350,2.489]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[91,1.166,469,3.357,672,2.714,741,3.271,2350,2.609]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,4.312,539,4.209,672,2.889,741,3.482,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[28,0.674,332,1.516,741,3.12,905,3.941,2416,2.909,2417,2.868]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[28,0.653,469,3.105,672,2.51,741,3.025,2497,4.784,2701,4.971]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[47,1.309,91,1.199,305,3.392,2227,2.338,2350,2.683]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[47,1.177,91,1.078,337,2.78,713,2.976,2595,4.629,2705,5.517]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,91,1.069,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[47,1.42,157,2.318,274,4.471,305,3.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[47,1.177,337,2.78,713,2.976,2403,5.204,2486,4.784,2695,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[17,1.241,26,0.084,47,2.101,56,2.489,94,2.385,95,1.86,120,1.86,130,1.846,131,2.914,227,1.778,332,1.508,357,2.687,397,0.889,718,1.846,799,1.778,858,2.813,1049,2.326,1361,0.915,1701,4.612,1852,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-centos-5/",[159,2.218,2070,4.472,2227,2.769]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[67,3.312,140,3.312,159,1.566,368,3.612,2070,3.158,2071,4.073,2706,5.573]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[28,0.674,47,1.214,474,3.232,1206,3.292,2416,2.909,2417,2.868]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2409,3.625,2707,3.409,2708,3.348]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[26,0.065,51,0.438,269,1.367,270,2.545,273,3.412,340,2.783,397,1.1,1258,4.219,1281,4.361,1361,1.132,1872,5.709,2414,6.075]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[5,0.761,40,2.375,159,1.518,206,3.342,235,2.506,2087,2.905,2088,3.854,2227,1.895]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[5,1.367,26,0.083,2087,6.2]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2416,2.391,2417,2.357]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[5,1.12,26,0.087,295,3.664,340,2.909,397,1.15,799,2.301,1361,1.183,2066,5.337,2087,6.049]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2409,3.625,2416,2.391,2417,2.357]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[26,0.061,51,0.412,269,1.312,270,2.442,273,3.204,295,3.292,340,3.476,397,1.033,1258,3.962,1281,4.095,1361,1.063,1872,5.361,2066,4.795,2414,5.705]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[91,0.972,120,1.634,276,3.17,2227,1.895,2289,3.854,2290,4.172,2291,4.69,2350,2.175]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[276,3.803,2289,4.623,2293,5.627,2294,5.173,2709,6.478]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[26,0.085,51,0.448,130,2.335,227,2.25,332,1.908,397,1.124,718,2.335,799,2.25,1049,2.943,1361,1.157,2289,7.169]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[91,0.972,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2227,1.895,2350,2.175]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[21,1.255,91,1.037,776,2.06,1066,2.17,1593,3.042,2227,2.022,2350,2.321]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[91,1.166,776,2.315,1066,2.439,1593,3.419,2350,2.609]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[5,0.715,40,2.234,91,0.914,206,3.144,235,2.357,2087,2.732,2088,3.625,2227,1.782,2350,2.046]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[91,1.269,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[28,0.787,2416,3.4,2417,3.352,2462,5.581]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[264,3.223,789,4.183,2462,4.629,2710,5.517,2711,7.757]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,1313,2.848,2416,2.909,2417,2.868,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[28,0.607,55,2.232,269,0.769,1313,2.568,2417,2.586,2497,4.45,2584,4.45]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[5,0.967,26,0.058,51,0.396,55,2.75,199,2.665,214,3.558,225,2.393,269,0.948,295,3.164,310,3.059,340,2.511,397,0.993,722,3.382,1313,4.264,1361,1.022,1436,4.081,2676,6.322]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[28,0.787,1061,4.848,2416,3.4,2417,3.352]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[264,3.223,789,4.183,1061,4.021,2710,5.517,2711,7.757]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[26,0.097,193,2.337,235,3.775,397,1.176,697,3.048,718,2.443,786,3.063,1061,5.46,1361,1.211]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[660,2.398,665,2.772,959,4.315,2087,3.324,2090,5.127,2712,5.69]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[174,2.652,269,0.719,665,2.336,1294,4.796,2076,3.807,2087,2.802,2090,4.321,2713,5.209]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[182,3.87,193,2.575,440,7.158,660,3.479,665,4.021,2090,7.437,2714,8.965]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[65,0.991,159,1.737,193,1.775,214,3.203,2008,3.427,2227,2.169]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[269,0.973,2008,3.91,2010,5.032,2715,7.051]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,4.901,273,3.735,340,3.046,400,4.83,402,3.949,765,5.49,1173,6.405]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[65,0.991,157,1.983,193,1.775,214,3.203,274,3.825,2008,3.427]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[269,0.973,2008,3.91,2010,5.032,2337,6.492]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2416,2.713,2417,2.675]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[159,1.872,269,0.92,1313,3.07,2227,2.338,2583,5.319]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[55,2.595,159,1.821,269,0.894,1313,2.985,2584,5.173]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,0.949,22,1.642,26,0.078,45,1.011,51,0.388,199,2.614,214,3.49,225,2.362,269,0.93,397,0.974,423,1.658,482,3.241,722,3.318,1313,4.775,1361,1.002,1436,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[159,1.737,1602,4.774,1823,4.774,2227,2.169,2484,4.411,2485,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[159,1.982,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[26,0.076,51,0.633,660,3.479,2485,8.682]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[159,1.518,199,2.096,269,0.745,270,1.387,392,1.878,1258,2.994,2227,1.895,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[26,0.069,45,1.221,51,0.469,269,1.427,270,2.657,397,1.176,423,2.003,1258,4.512,1361,1.211]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[157,1.733,199,2.096,269,0.745,270,1.387,274,3.342,392,1.878,1258,2.994,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[26,0.073,51,0.491,269,1.471,270,2.737,397,1.233,1258,4.73,1361,1.269]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,0.761,40,2.375,91,0.972,199,2.096,264,2.905,719,2.56,2227,1.895,2350,2.175]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[28,0.628,1602,4.453,1823,4.453,2416,2.713,2417,2.675,2484,4.113,2485,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[28,0.706,776,2.315,2017,4.432,2417,3.006,2484,4.623]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/clients/retrieve-email-using-getmail/",[5,1.018,313,5.768,776,2.581,2716,6.275]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[776,2.764,2716,6.719,2717,7.122]],["toc//docs/email/clients/retrieve-email-using-getmail/",[5,1.27,26,0.056,37,3.832,51,0.519,54,2.329,83,3.928,214,3.424,487,3.745,776,3.222,992,4.214,1008,6.085,1027,4.631,1658,4.356,1958,4.958,2716,8.913]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,4.781,1,4.213,3,1.744,8,4.602,1760,5.607,2718,5.764]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1,3.807,8,4.159,13,4.321,14,4.796,2719,5.209,2720,5.209,2721,5.209,2722,5.209]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,9.061,1,7.984,2,3.813,3,2.687,5,1.251,6,3.172,8,7.091,13,7.367,17,1.026,235,2.358,259,3.627,325,3.02,698,2.235,722,2.503,2189,4.216,2723,5.082,2724,5.082,2725,5.082]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2726,7.55,2727,8.004]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1700,3.641,2726,6.719,2728,7.735]],["toc//docs/development/frameworks/catalyst-and-modperl/",[26,0.069,32,1.685,45,0.848,51,0.466,63,1.993,65,0.906,142,2.048,199,2.194,204,2.587,225,1.462,269,1.422,310,2.519,351,1.561,390,1.556,397,0.817,722,2.785,1089,4.132,1361,0.841,1436,3.36,2672,5.205,2726,8.196,2727,7.443]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[91,1.037,120,1.744,193,1.655,722,2.839,2227,2.022,2350,2.321,2729,5.006]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[55,2.232,91,1.003,690,3.356,1180,3.674,2042,4.182,2729,4.84,2730,5.573]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[5,0.986,26,0.06,47,1.376,49,3.999,51,0.54,192,3.925,194,5.41,269,0.967,397,1.012,1361,1.042,2430,7.243,2585,8.144,2729,8.144]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[21,1.345,91,1.112,120,1.87,1849,3.232,2227,2.169,2350,2.489]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[21,1.535,91,1.269,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[3,2.207,26,0.082,51,0.555,90,2.215,142,2.642,269,1.007,332,1.789,334,5.092,642,4.58,697,2.732,1849,5.999]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[91,1.037,286,3.071,950,3.567,2227,2.022,2306,4.602,2307,4.325,2350,2.321]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1076,3.401,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2341,5.131,2731,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[332,1.516,665,2.772,950,3.825,1107,3.542,2316,4.774,2712,5.69]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2074,6.176,2732,7.735,2733,7.735]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[4,2.221,17,1.918,32,2.129,45,1.072,119,2.187,170,4.144,174,3.638,182,3.085,363,4.302,639,4.247,950,4.422,1107,6.523,2076,5.222]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[850,0.477]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[91,1.3,2227,2.535,2305,4.762,2350,2.91]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[67,3.561,91,1.078,140,3.561,1632,4.784,2305,3.95,2680,5.517]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[12,2.482,17,1.072,26,0.078,37,3.08,45,0.797,51,0.445,56,2.151,90,1.613,225,1.374,269,1.067,332,1.303,390,1.462,397,0.768,404,3.708,421,3.387,423,1.308,552,2.83,584,3.501,799,1.537,1361,0.79,1535,3.336,1848,3.791,2187,4.891,2305,7.548]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[91,1.037,1602,4.453,1823,4.453,2227,2.022,2350,2.321,2484,4.113,2485,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[91,1.269,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2734,4.784]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[58,1.791,91,0.972,495,3.391,499,1.912,2081,3.854,2082,2.963,2227,1.895,2350,2.175]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[91,1.166,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-joomla/",[120,2.186,193,2.075,691,5.28,722,3.559]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[690,4.658,691,5.654,1180,5.099]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[26,0.087,51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,691,7.449,718,2.388,799,2.301,1049,3.009]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[5,0.761,91,0.972,278,2.905,499,1.912,2091,2.877,2092,3.694,2227,1.895,2350,2.175]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[91,1.166,499,2.294,840,4.069,2091,3.451,2095,3.485]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2462,5.581]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[91,1.269,264,3.793,789,4.923,2462,5.447]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[47,1.708,51,0.501]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[26,0.06,47,1.386,713,3.502,1451,6.492]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[3,1.474,33,1.135,47,0.957,51,0.553,65,0.781,110,3.003,143,4.23,175,2.859,195,3.763,196,3.56,197,3.4,201,4.23,225,1.26,235,2.26,337,2.26,345,3.211,362,2.825,390,1.995,402,2.309,446,3.341,532,5.602,592,3.059,660,1.89,695,2.344,698,2.143,718,1.463,962,2.595,1420,3.763,1693,4.23,2036,3.4,2066,3.269,2735,4.485,2736,4.485]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[91,1.3,1061,4.848,2227,2.535,2350,2.91]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[91,1.269,264,3.793,789,4.923,1061,4.732]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[26,0.097,193,2.337,235,3.775,397,1.176,697,3.048,718,2.443,786,3.063,1061,5.46,1361,1.211]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[120,2.016,131,3.159,357,2.912,459,5.526,2737,5.786]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1641,5.173,1642,5.173,2656,5.965,2737,5.627,2738,6.478]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[5,1.049,6,3.157,15,5.094,17,1.503,26,0.063,120,2.253,391,6.329,439,4.484,454,6.178,459,6.178,2659,6.857,2737,9.465]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[91,1.037,227,1.668,763,4.113,1958,4.325,2061,4.113,2227,2.022,2350,2.321]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[91,1.269,2061,5.032,2062,6.124,2350,2.84]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[5,0.931,26,0.087,45,0.992,51,0.591,187,3.309,310,2.944,397,0.955,410,4.716,596,4.15,718,1.984,1357,5.276,1361,0.983,2061,6.434,2063,5.482,2065,5.105,2582,6.085]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[63,2.546,199,2.804,2739,6.275,2740,6.275]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[269,0.827,2323,4.971,2739,5.204,2740,5.204,2741,5.992,2742,5.992]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[26,0.044,49,3.226,51,0.568,192,2.89,225,1.956,226,3.065,241,4.901,269,1.362,341,2.268,390,2.081,395,2.774,397,0.745,722,3.726,1089,5.528,1361,0.767,1436,4.495,2056,5.075,2057,5.397,2739,4.478,2740,4.478,2743,5.156]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[850,0.477]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[5,1.018,313,5.768,776,2.581,2744,6.275]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[72,3.954,777,2.747,2717,5.965,2744,5.627,2745,6.478]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[5,0.784,26,0.047,45,0.835,149,1.944,175,3.266,184,4.615,197,5.58,204,3.657,241,3.606,257,3.494,312,4.175,319,3.266,348,2.936,392,1.935,410,3.971,628,4.946,698,2.447,777,2.359,1918,4.832,2235,5.123,2744,8.88,2746,5.564,2747,5.123,2748,5.564,2749,5.564]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[850,0.477]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[17,1.247,21,1.345,228,2.974,660,2.398,665,2.772,1107,3.542]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2074,6.176,2750,7.735,2751,7.735]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[4,2.016,17,1.797,21,1.938,32,1.933,45,0.973,170,3.762,182,2.8,205,4.015,228,3.122,363,3.906,639,3.855,660,2.517,665,3.992,718,1.948,1107,6.27,2076,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/",[28,0.674,91,1.112,403,4.411,660,2.398,1369,5.69,1729,4.637]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[997,6.124,1729,5.291,2752,7.051,2753,7.051]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[5,1.263,51,0.516,149,3.132,415,6.132,487,5.081,997,7.786,1729,6.727]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[28,0.787,2070,4.094,2754,4.762,2755,4.762]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2756,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[28,0.787,2070,4.094,2416,3.4,2417,3.352]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2757,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[26,0.063,45,1.118,51,0.563,65,1.194,193,2.139,225,1.926,270,1.914,390,2.049,422,4.046,545,4.826,718,2.236,818,5.094,2070,5.535]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[91,0.914,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2227,1.782,2350,2.046,2409,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.42,269,1.33,270,2.475,273,3.271,340,2.667,397,1.054,423,1.795,1258,4.044,1281,4.18,1361,1.085,1872,5.472,2414,5.823]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[59,3.343,65,0.924,91,1.037,777,2.444,1997,3.426,2227,2.022,2350,2.321]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1381,3.763,1997,3.561,1999,4.496,2000,4.496,2367,5.517,2595,4.629]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2416,2.713,2417,2.675]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1381,3.763,1997,3.561,1999,4.496,2000,4.496,2250,4.971,2497,4.784]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[26,0.066,51,0.579,58,2.579,90,2.362,95,2.353,272,2.885,278,4.183,397,1.124,777,4.259,1361,1.157,1997,4.622]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[47,1.309,159,1.872,1178,2.572,1837,3.282,2227,2.338]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[47,1.386,1537,4.139,2025,4.923,2758,6.492]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[26,0.065,45,1.142,51,0.571,90,2.311,95,2.302,225,1.968,272,2.823,390,2.094,423,1.873,1178,3.824,1562,5.561,1837,3.748]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[47,1.214,91,1.112,1178,2.386,1837,3.045,2227,2.169,2350,2.489]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[47,1.273,1537,3.803,2025,4.523,2355,5.627,2759,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.555,90,2.215,95,2.207,225,1.887,272,2.706,390,2.007,397,1.054,423,1.795,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2416,2.909,2417,2.868]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2760,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,1837,3.593,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[120,2.016,169,3.959,357,2.912,358,5.319,2761,5.786]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1222,5.447,2657,6.492,2761,6.124,2762,7.051]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[5,0.595,6,1.792,15,2.892,17,0.853,26,0.055,31,2.545,32,1.26,33,0.985,34,0.995,51,0.375,65,0.678,120,2.404,149,1.477,169,2.512,193,1.214,203,1.741,214,2.19,245,2.951,269,0.899,295,4.89,303,3.09,337,1.962,416,2.58,486,2.004,495,2.655,543,3.375,660,2.528,907,2.481,959,2.951,1044,2.05,1082,2.892,1306,3.892,2761,8.846,2763,4.227]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[850,0.477]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[37,4.576,246,5.631,585,6.546]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[4,1.619,36,3.058,37,3.021,351,1.438,733,3.021,2764,5.209,2765,4.796,2766,5.209]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[5,1.379,35,3.159,37,6.479,54,2.129,83,3.591,149,2.11,197,4.218,392,2.101,584,5.585,645,4.054,727,5.562,890,4.667,1111,4.533,1848,4.311,1977,5.562,2747,7.802,2765,7.802]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[47,1.309,159,1.872,270,1.712,1178,2.572,2227,2.338]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[47,1.386,1537,4.139,1538,4.732,2758,6.492]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[26,0.065,51,0.634,54,2.682,90,2.311,95,2.302,270,1.955,272,2.823,351,2.101,552,4.053,1178,2.938,2300,4.931,2387,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[47,1.214,91,1.112,270,1.588,1178,2.386,2227,2.169,2350,2.489]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[47,1.386,1537,4.139,1538,4.732,2355,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[26,0.083,45,1.118,51,0.429,90,2.262,95,2.253,270,1.914,272,2.763,397,1.077,423,1.833,552,3.967,1178,2.875,1361,1.108,2300,4.826,2387,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[850,0.477]],["title//docs/tools-reference/linux-system-administration-basics/",[4,2.246,54,2.546,351,1.995,733,4.19]],["keywords//docs/tools-reference/linux-system-administration-basics/",[4,1.619,337,2.417,777,2.208,800,2.546,814,3.563,2767,5.209,2768,4.796,2769,5.209]],["toc//docs/tools-reference/linux-system-administration-basics/",[3,2.451,4,1.602,6,2.185,26,0.019,28,0.247,32,0.676,45,1.135,51,0.225,54,0.799,59,1.315,65,1.299,74,3.678,91,0.408,95,1.559,114,1.701,120,1.559,139,2.729,159,0.637,193,1.123,219,2.79,227,1.131,228,1.881,232,0.95,242,4.113,269,0.313,286,1.208,305,1.154,315,1.271,337,1.052,351,1.909,397,0.328,402,1.075,422,2.124,423,0.558,447,1.403,499,1.384,500,1.701,619,2.729,645,1.521,656,1.701,661,2.455,672,0.95,693,1.657,695,1.881,698,0.997,710,1.618,776,1.841,913,1.618,929,3.121,1027,1.164,1068,1.657,1080,1.701,1082,1.551,1089,1.657,1326,1.185,1409,2.674,1414,4.04,1462,1.969,1561,1.618,1630,1.969,1887,1.81,1901,1.969,2157,1.969,2421,1.701,2457,1.969,2468,1.969,2549,2.087,2639,1.881,2640,2.087,2770,2.087,2771,2.267]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,274,3.825]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[269,1.068,1881,5.013,2486,6.176]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[12,2.729,16,2.419,26,0.082,51,0.602,56,2.365,65,0.936,225,1.511,269,1.326,273,2.62,337,2.71,345,3.85,390,1.607,397,0.844,400,3.387,482,2.811,642,3.668,924,4.382,963,2.637,1361,0.869,1561,4.168,2392,4.382]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[91,1.3,2070,4.094,2227,2.535,2350,2.91]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[67,3.561,140,3.561,2070,3.396,2071,4.379,2772,5.992,2773,5.992]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[58,2.05,159,1.737,1281,3.542,1987,4.005,2026,3.628,2227,2.169]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[5,0.897,26,0.054,45,0.956,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,423,2.164,499,2.255,733,3.694,800,3.113,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[850,0.477]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[91,1.112,672,2.589,2227,2.169,2350,2.489,2506,5.69,2774,5.368]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[769,3.122,2117,5.63,2774,6.124,2775,7.051]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[5,0.986,26,0.09,51,0.403,130,2.103,227,2.026,315,3.925,332,1.718,397,1.012,718,2.103,799,2.026,1049,2.65,1361,1.042,2774,9.805]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/apache/apache-access-control/",[269,1.089,486,3.741,660,3.062]],["keywords//docs/web-servers/apache/apache-access-control/",[269,0.769,332,1.367,337,2.586,713,2.768,1565,4.84,2776,5.573,2777,5.573]],["toc//docs/web-servers/apache/apache-access-control/",[33,1.7,34,1.716,269,1.007,337,4.47,348,3.849,486,4.567,530,4.391,660,3.738,771,3.652,963,3.293,1082,4.989,1519,5.823,2440,6.715]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[235,3.091,269,0.92,339,4.065,486,3.159,660,2.585]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[269,0.894,332,1.59,337,3.006,713,3.217,1565,5.627]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[35,3.813,83,4.335,204,3.337,235,3.384,339,5.879,486,5.44,644,4.281,660,4.453,2241,6.715]],["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/",[91,1.112,120,1.87,391,4.005,720,3.772,2227,2.169,2350,2.489]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[720,3.657,2255,6.726,2256,4.784,2257,4.784,2778,5.992]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[17,1.011,22,1.221,26,0.083,47,1.731,49,2.136,51,0.648,54,1.766,58,1.661,90,1.522,95,1.516,130,1.504,227,1.449,269,0.692,332,1.229,351,1.383,397,0.724,404,3.497,718,1.504,720,5.375,721,2.839,776,1.79,799,1.449,1049,1.895,1149,3.497,1361,0.745]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,214,2.987,2008,3.196,2227,2.022,2350,2.321]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[269,0.973,1510,5.63,2008,3.91,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[28,0.674,120,1.87,391,4.005,720,3.772,2416,2.909,2417,2.868]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2779,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[17,0.983,22,1.187,26,0.082,45,0.731,47,1.702,49,2.077,51,0.62,58,1.615,90,1.479,95,2.194,130,1.463,227,1.409,269,0.672,295,2.244,332,1.195,340,1.781,397,0.704,404,3.4,423,1.199,718,1.463,720,5.287,721,2.76,776,1.74,799,1.409,1049,1.843,1149,3.4,1361,0.725]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[17,1.247,157,1.983,159,1.737,786,2.327,805,3.772,806,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[157,2.079,159,1.821,1151,4.861,1152,5.173,2780,5.965]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[17,1.857,33,2.144,34,2.165,786,3.464,805,5.614,806,4.725]],["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/",[17,1.247,28,0.674,91,1.112,786,2.327,805,3.772,806,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[28,0.706,91,1.166,1151,4.861,1152,5.173,2780,5.965]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[17,1.857,33,2.144,34,2.165,786,3.464,805,5.614,806,4.725]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[629,4.754,697,2.496,786,2.508,805,4.065,806,3.422]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1151,4.861,1152,5.173,2781,6.478,2782,5.627,2783,6.478]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[17,1.764,26,0.074,61,3.895,62,3.845,786,3.292,805,5.335,806,4.49,1298,6.239]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[850,0.477]],["title//docs/platform/linode-beginners-guide/",[119,2.415,1171,5.921,1539,7.265]],["keywords//docs/platform/linode-beginners-guide/",[1677,5.63,2768,6.492,2784,7.051,2785,7.051]],["toc//docs/platform/linode-beginners-guide/",[3,1.18,4,1.212,19,2.077,26,0.033,40,2.691,45,0.585,48,2.57,54,1.374,59,2.261,90,1.184,94,2.374,119,3.502,182,1.683,203,1.606,225,1.009,275,2.667,305,1.986,330,3.113,486,1.849,499,1.381,538,3.012,597,3.113,644,3.591,663,3.683,698,1.715,710,2.783,754,2.413,776,1.393,799,1.128,966,3.387,1043,2.667,1044,1.891,1788,3.012,1845,5.313,1884,3.387,2136,3.387,2451,3.387,2786,3.899,2787,3.899,2788,6.117,2789,3.899,2790,3.899]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[697,2.707,786,2.72,1149,5.044,1150,4.537]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1298,5.032,1709,4.823,2782,6.124,2791,7.051]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[17,1.722,26,0.073,395,4.589,786,4.011,806,4.381,962,4.544,1154,5.955,1298,6.088]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[850,0.477]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[5,0.871,214,3.203,402,2.93,552,3.292,2792,6.18,2793,5.69]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1298,5.032,1709,4.823,2782,6.124,2793,6.492]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[26,0.083,771,4.86,786,3.655,1298,6.927]],["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/",[3,1.87,170,3.584,363,3.721,639,3.673,1043,4.227,2794,5.368]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1727,4.784,1729,4.496,2794,5.204,2795,5.992,2796,5.992,2797,5.992]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[5,1.072,26,0.065,182,4.276,260,5.878,262,3.506,397,1.1,665,3.412,963,3.435,1149,5.312,1361,1.132,2794,8.602,2798,7.608]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[850,0.477]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[3,1.87,28,0.674,98,4.517,1043,4.227,1726,4.774,2416,2.909]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1726,4.629,1727,4.784,1728,5.517,1729,4.496,1730,5.517,1731,5.517]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[5,1.146,26,0.069,182,3.512,260,6.285,262,3.749,397,1.176,665,3.649,963,3.673,1361,1.211,1726,7.988]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[91,1.199,776,2.38,2014,3.959,2227,2.338,2350,2.683]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[2014,3.851,2017,4.432,2018,4.861,2799,6.478,2800,5.627]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[26,0.061,45,1.072,340,2.613,392,3.305,397,1.033,423,1.759,944,5.099,963,3.226,992,4.557,1361,1.063,1638,4.422,1814,4.422,2014,6.346,2019,5.222]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[28,0.726,776,2.38,2014,3.959,2754,4.391,2755,4.391]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[2014,3.851,2017,4.432,2018,4.861,2800,5.627,2801,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[26,0.054,45,1.319,51,0.367,95,1.927,340,2.33,357,2.784,392,3.057,397,0.921,423,1.568,718,1.913,944,4.545,963,2.876,992,4.062,1361,0.948,1638,3.942,1814,3.942,2014,5.983,2019,4.655,2065,4.92]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[28,0.726,776,2.38,2014,3.959,2416,3.136,2417,3.091]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[2014,3.851,2017,4.432,2018,4.861,2800,5.627,2802,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[26,0.054,45,1.319,51,0.367,95,1.927,340,2.33,357,2.784,392,3.057,397,0.921,423,1.568,718,1.913,944,4.545,963,2.876,992,4.062,1361,0.948,1638,3.942,1814,3.942,2014,5.983,2019,4.655,2065,4.92]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2803,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1989,3.223,1990,3.223,1991,3.169,1992,3.169,2026,2.87,2030,3.669,2031,3.223,2804,4.889,2805,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[5,0.851,26,0.051,51,0.348,54,2.129,149,2.11,204,2.765,225,1.563,295,2.784,319,3.546,340,2.21,362,3.503,390,1.662,397,0.873,423,1.487,499,2.139,733,3.503,800,2.953,1361,0.899,2026,5.744,2032,3.25,2035,4.533,2036,4.218,2037,3.915,2066,4.054]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[51,0.455,54,2.781,269,1.089]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[51,0.373,269,0.894,337,3.006,713,3.217,1996,5.965]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[3,2.997,17,1.536,51,0.438,54,2.682,91,1.369,225,1.968,245,5.312,269,1.05,390,2.094,693,5.561,972,6.075,981,6.312,2468,6.608]],["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/",[269,0.997,400,4.19,924,5.421,2392,5.421]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[269,0.827,400,3.475,645,4.021,1713,3.95,2392,4.496,2806,5.517]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[33,1.854,34,1.871,358,6.349,400,5.91,645,5.337,765,5.242,924,7.646,1447,7.322,2392,5.967,2409,5.675]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[15,4.942,219,5.156,269,0.997,800,3.531]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[269,0.973,800,3.446,1713,4.648,2807,7.051]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[51,0.36,197,4.368,225,1.618,269,1.487,302,4.995,340,2.288,390,1.721,392,2.176,545,4.054,698,3.819,800,4.243,1027,5.122,1420,4.833,1928,5.76,2736,5.76,2808,6.256,2809,6.256]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,231,2.886,269,0.796,2416,2.713,2417,2.675]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[269,0.827,713,2.976,2009,4.379,2810,5.992,2811,5.992,2812,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[16,2.546,26,0.084,51,0.569,54,2.167,56,2.489,225,1.59,231,3.078,235,2.852,269,1.364,273,3.847,315,3.445,351,1.697,390,1.691,397,0.889,482,2.958,695,2.958,1361,0.915,1490,4.291]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2416,2.713,2417,2.675]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1066,1.64,1381,2.735,1943,3.268,2298,2.441,2565,3.365,2566,3.365,2567,3.365,2568,3.365,2696,4.01,2813,4.355,2814,4.01]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[28,0.628,58,1.912,1281,3.304,1986,3.426,1987,3.735,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2815,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[28,0.726,65,1.068,769,2.949,2416,3.136,2417,3.091]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1666,5.005,2111,5.005,2701,5.374,2816,6.478,2817,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,235,2.582,269,0.768,270,1.43,351,1.536,390,2.199,695,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2416,2.713,2417,2.675]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1475,4.648,2096,5.447,2097,5.154,2818,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2416,2.713,2417,2.675]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[46,2.587,1076,3.657,1170,4.021,2819,5.992,2820,5.992,2821,5.992]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,305,2.935,2068,3.163,2416,2.713,2417,2.675]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1881,4.199,2068,3.555,2701,5.374,2822,6.478,2823,6.478]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[26,0.056,45,0.992,51,0.381,95,2,151,4.09,174,3.365,332,2.212,357,2.889,397,0.955,423,1.627,660,3.499,754,5.58,814,6.167,1027,3.394,1361,0.983,2068,4.948]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/networking/ssh/using-sshfs-on-linux/",[5,0.938,12,3.113,228,3.206,654,4.471,2824,5.146]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2824,5.447,2825,7.051,2826,7.051,2827,7.051]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[3,1.963,4,2.016,5,0.914,12,3.031,26,0.055,32,1.933,45,0.973,61,2.89,62,2.853,95,1.963,187,3.248,205,4.015,228,4.284,262,2.989,351,1.791,654,6.821,665,2.909,718,1.948,2824,5.011]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[65,1.158,159,2.031,769,3.198,2227,2.535]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[159,2.174,769,3.424,2700,6.417]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[850,0.477]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[3,2.186,174,3.679,1043,4.942,2828,6.275]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1727,5.173,1729,4.861,2828,5.627,2829,6.478,2830,6.478]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[5,1.263,26,0.076,397,1.296,1149,6.259,1361,1.334,2828,9.542]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[26,0.049,65,0.924,91,1.037,2032,3.1,2105,3.383,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2831,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2707,3.868,2708,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2832,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2833,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2707,3.868,2708,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1989,3.434,1990,3.434,1991,3.376,1992,3.376,2026,3.058,2030,3.908,2031,3.434,2834,5.209]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[5,0.897,26,0.054,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,397,0.921,423,1.568,499,2.255,733,3.694,800,3.113,1361,0.948,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1989,3.434,1990,3.434,1991,3.376,1992,3.376,2026,3.058,2030,3.908,2031,3.434,2835,5.209]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[5,0.851,26,0.051,51,0.348,54,2.129,149,2.11,204,2.765,225,1.563,295,2.784,319,3.546,340,2.21,362,3.503,390,1.662,397,0.873,423,1.487,499,2.139,733,3.503,800,2.953,1361,0.899,2026,5.744,2032,3.25,2035,4.533,2036,4.218,2037,3.915,2066,4.054]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[65,1.068,193,1.913,269,0.92,400,3.863,645,4.471]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[269,0.894,400,3.757,645,4.348,2704,5.627,2806,5.965]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[33,2.09,34,2.11,400,5.199,645,7.373,1420,6.926,2836,8.965]],["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/",[58,1.912,91,1.037,1281,3.304,1987,3.735,2026,3.383,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[5,0.897,26,0.054,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,397,0.921,423,1.568,499,2.255,733,3.694,800,3.113,1361,0.948,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[91,1.112,2001,4.315,2002,4.227,2003,3.772,2227,2.169,2350,2.489]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[51,0.469,94,3.157,130,2.443,227,2.354,332,1.996,397,1.176,581,5.806,799,2.354,1049,3.079,1361,1.211,2003,4.965]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[26,0.061,28,0.787,92,3.531,2837,6.275]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2048,4.658,2837,6.719,2838,7.735]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[21,1.857,51,0.614,94,3.31,581,6.088,1044,4.137,2837,10.09]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[26,0.067,232,3.306,689,4.816]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[270,1.432,689,3.401,690,3.356,1180,3.674,1700,2.623,1720,5.131,2042,4.182]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[5,1.173,26,0.071,45,1.25,51,0.48,94,3.232,232,3.49,689,7.013,718,2.501]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[65,1.158,157,2.318,769,3.198,2839,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1799,5.154,1800,5.291,2840,7.051,2841,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[65,1.158,157,2.318,274,4.471,769,3.198]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1799,5.154,1800,5.291,2842,7.051,2843,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[91,1.199,269,0.92,1182,3.734,2227,2.338,2350,2.683]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[29,3.59,2346,5.85,2347,6.492,2348,6.492]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[5,0.986,26,0.08,29,3.566,45,1.051,90,2.127,110,2.9,269,0.967,325,4.162,340,2.561,397,1.012,423,1.724,1182,5.925,1361,1.042,1409,4.79,2349,5.254]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[26,0.049,28,0.628,269,0.796,1182,3.231,1194,2.839,2707,3.868,2708,3.799]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[29,3.59,1985,5.63,2346,5.85,2844,7.051]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[5,1.027,26,0.082,29,3.714,90,2.215,110,3.021,269,1.007,325,4.335,340,2.667,397,1.054,1182,6.046,1361,1.085,1409,4.989,2349,5.472]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2707,3.868,2708,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2845,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[5,0.938,174,3.392,182,2.876,665,2.988,2076,4.869]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2076,5.654,2846,7.735,2847,7.735]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[26,0.062,182,3.148,199,2.83,225,1.887,228,4.636,362,4.229,392,2.536,665,4.32,959,5.092,1107,4.18,1108,4.391,1474,5.823,2076,7.041]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[28,0.628,58,1.912,1281,3.304,1986,3.426,1987,3.735,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2848,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[58,1.912,91,1.037,1281,3.304,1986,3.426,1987,3.735,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1986,3.096,1988,3.807,1989,3.434,1990,3.434,1991,3.376,1992,3.376,2031,3.434,2518,4.796]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[28,0.628,776,2.06,1034,2.429,1379,3.799,2359,4.602,2707,3.868,2708,3.799]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1596,5.032,2363,5.63,2364,5.63,2610,6.492]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2754,3.799,2755,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2814,4.502]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[5,1.018,19,3.849,1960,6.652,2824,5.581]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2824,5.447,2849,7.051,2850,7.051,2851,7.051]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[19,5.806,25,5.199,36,4.371,51,0.628,65,1.194,364,5.315,654,4.998,660,2.89,665,3.34,2824,5.753,2852,7.447]],["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/",[28,0.628,65,0.924,193,1.655,305,2.935,2068,3.163,2754,3.799,2755,3.799]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1881,4.57,2068,3.87,2853,7.051,2854,6.124]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[26,0.058,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,397,0.993,660,3.591,754,5.727,814,6.329,1027,3.527,1361,1.022,2068,5.078]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[159,1.737,776,2.208,1034,2.605,1379,4.074,2227,2.169,2359,4.935]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1596,5.032,2363,5.63,2364,5.63,2855,7.051]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[3,2.353,26,0.085,95,2.353,130,2.335,227,2.25,332,1.908,351,2.147,718,3.016,799,2.25,1049,2.943,1379,5.126]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[850,0.477]],["title//docs/databases/postgresql/centos-5/",[5,0.871,22,1.507,46,2.668,159,1.737,1074,3.357,2227,2.169]],["keywords//docs/databases/postgresql/centos-5/",[46,3.044,1076,4.303,1170,4.732,2856,7.051]],["toc//docs/databases/postgresql/centos-5/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/centos-5/",[850,0.477]],["title//docs/databases/postgresql/fedora-12/",[5,0.871,22,1.507,46,2.668,157,1.983,274,3.825,1074,3.357]],["keywords//docs/databases/postgresql/fedora-12/",[1076,4.721,1170,5.191,2857,7.735]],["toc//docs/databases/postgresql/fedora-12/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/fedora-12/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2707,3.868,2708,3.799]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[46,3.044,1076,4.303,1170,4.732,2858,6.492]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[17,2.177,22,1.778,26,0.062,46,4.657,51,0.42,149,2.548,397,1.393,1077,4.18,1081,4.807,1361,1.433]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2754,3.799,2755,3.799]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[46,3.044,1076,4.303,1170,4.732,2858,6.492]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[17,2.222,22,1.855,26,0.065,46,4.754,51,0.438,149,2.658,397,1.1,1077,4.361,1081,5.015,1361,1.132]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[21,1.255,91,1.037,776,2.06,1066,2.17,2227,2.022,2298,3.231,2350,2.321]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2859,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[5,1.043,17,1.011,21,2.118,26,0.043,32,2.207,45,1.322,51,0.561,90,1.522,95,1.516,149,2.586,272,1.859,390,1.378,397,0.724,402,3.51,423,1.233,446,2.308,697,1.877,777,2.124,786,1.886,1066,3.316,1361,0.745,1597,3.057,2244,3.427,2298,2.808]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[91,1.112,269,0.853,1313,2.848,2227,2.169,2350,2.489,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[55,2.825,269,0.973,1313,3.249,2584,5.63]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[5,0.986,26,0.06,45,1.051,51,0.403,55,2.805,199,2.718,214,3.629,225,2.425,269,0.967,310,3.12,397,1.012,423,1.724,722,3.45,1313,4.32,1361,1.042,1436,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[28,0.674,269,0.853,1313,2.848,2583,4.935,2707,4.148,2708,4.074]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[28,0.607,55,2.232,269,0.769,1313,2.568,2584,4.45,2708,3.674,2860,5.573]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[5,0.967,26,0.079,51,0.396,55,2.75,94,2.665,199,2.665,214,3.558,225,2.393,269,0.948,310,3.059,397,0.993,722,3.382,1313,4.822,1361,1.022,1436,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,305,2.935,2068,3.163,2227,2.022,2350,2.321]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1881,4.57,2068,3.87,2595,5.447,2705,6.492]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[26,0.062,51,0.42,151,4.514,174,3.714,332,2.363,397,1.054,660,3.738,754,5.962,814,6.589,1361,1.085,2068,5.286]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[104,3.045,131,2.93,132,4.637,392,2.149,927,3.628,1582,4.411]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[861,5.291,862,5.032,1583,5.63,1584,5.63]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[28,1.057,91,1.745,157,1.906,159,2.353,232,2.488,293,3.164,570,3.078,1034,3.529,1194,2.926,1256,4.341,1572,3.576,1716,2.564,1811,3.051,2139,2.646,2211,2.858,2227,2.084,2274,2.564,2861,5.939,2862,5.939,2863,5.939,2864,5.939]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[850,0.477]],["title//docs/tools-reference/tools/introduction-to-rsync/",[175,5.102,1955,6.941]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[19,2.969,23,4.84,906,3.612,1527,4.84,1955,4.45,2663,5.131,2865,5.573]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[446,3.931,959,5.955,1955,9.276,2866,8.53,2867,8.53,2868,8.53,2869,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,0.812,22,1.405,46,2.488,91,1.037,1074,3.131,2227,2.022,2350,2.321]],["keywords//docs/databases/postgresql/debian-5-lenny/",[46,3.044,1076,4.303,1170,4.732,2870,7.051]],["toc//docs/databases/postgresql/debian-5-lenny/",[17,2.092,22,1.642,26,0.078,45,1.011,46,4.474,51,0.388,149,2.353,237,4.365,397,0.974,963,3.041,1077,3.86,1081,4.439,1361,1.002,2103,5.203,2104,5.203]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/how-to-configure-git/",[110,3.268,168,4.053,491,5.201]],["keywords//docs/development/version-control/how-to-configure-git/",[28,0.502,91,0.829,168,2.366,1326,2.409,1521,2.851,1640,4.002,1641,3.679,1642,3.679,1643,3.822,2871,4.607]],["toc//docs/development/version-control/how-to-configure-git/",[6,3.157,51,0.429,54,2.625,168,5.597,228,3.584,278,4.006,295,4.5,446,4.5,459,6.178,625,5.443,1547,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/",[4,2.071,26,0.057,168,3.422,170,3.863,174,3.392]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[168,3.328,1640,5.627,1641,5.173,1642,5.173,1643,5.374]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[26,0.078,110,3.81,168,6.17,175,5.4]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[4,2.453,175,4.632,614,6.096]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[4,2.405,1826,5.976,2872,7.735]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[3,1.789,4,2.827,12,4.25,26,0.071,38,2.279,65,0.599,110,2.448,114,2.802,119,1.809,130,1.121,131,1.77,149,1.304,182,1.612,208,3.098,294,2.885,332,0.916,392,1.299,393,2.42,416,3.608,446,1.721,455,2.345,491,2.461,530,2.248,597,2.981,661,2.345,701,2.885,710,2.665,799,2.631,981,3.098,1361,0.556,1473,3.243,1486,3.243,1693,3.243,1793,4.904,1826,2.885,1975,3.243,2149,3.438,2873,5.911,2874,3.734,2875,3.734,2876,3.734]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[4,2.453,149,2.756,1082,5.397]],["keywords//docs/tools-reference/linux-users-and-groups/",[4,1.863,149,2.093,416,3.657,2550,4.971,2877,5.992,2878,5.992]],["toc//docs/tools-reference/linux-users-and-groups/",[3,2.827,6,1.957,12,3.92,17,1.406,38,2.817,149,3.263,204,2.112,218,3.097,303,3.373,320,3.042,345,3.042,401,2.779,416,6.119,446,3.209,455,4.374,487,2.616,591,3.829,865,4.009,989,4.249,1026,3.685,1082,6.39,1282,3.373,2550,5.777,2554,4.249,2879,4.615]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[351,2.179,2142,6.853,2143,7.265]],["keywords//docs/security/recovering-from-a-system-compromise/",[2880,7.051,2881,8.673,2882,6.492]],["toc//docs/security/recovering-from-a-system-compromise/",[5,0.931,40,4.514,51,0.381,119,2.76,263,4.83,644,3.879,663,3.979,906,5.843,1484,4.716,1829,5.482,2141,7.479,2500,6.085,2735,6.085,2883,6.608,2884,6.608,2885,6.608]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[91,1.037,231,2.886,269,0.796,697,2.16,786,2.17,2227,2.022,2350,2.321]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1709,4.823,1714,6.492,1881,4.57,2595,5.447]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[47,1.309,159,1.872,474,3.483,1206,3.549,2227,2.338]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1207,4.246,1522,4.923,1523,4.364,2886,7.051]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[47,1.214,91,1.112,474,3.232,1206,3.292,2227,2.169,2350,2.489]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1207,4.246,1522,4.923,1523,4.364,1920,6.124]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[28,0.628,47,1.133,474,3.014,1194,2.839,1206,3.071,2707,3.868,2708,3.799]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1207,4.246,1522,4.923,1523,4.364,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[28,0.674,47,1.214,474,3.232,1206,3.292,2754,4.074,2755,4.074]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[26,0.057,119,2.039,129,3.694,131,3.159,1532,5.786]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[920,6.417,921,6.719,1040,7.122]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[17,1.309,32,1.933,45,0.973,51,0.374,110,2.687,119,2.725,254,3.303,390,2.797,533,4.204,596,6.383,658,3.855,665,2.909,906,4.204,1287,8.196,1534,4.867,2887,6.486]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[28,0.674,269,0.853,474,3.232,1206,3.292,2754,4.074,2755,4.074]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[26,0.066,51,0.448,63,2.741,204,3.559,214,4.03,224,4.51,269,1.073,310,3.465,446,3.583,721,5.693,930,5.429,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[28,0.589,65,0.866,193,1.551,231,2.704,269,0.745,1194,2.66,2707,3.624,2708,3.559]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[269,0.827,713,2.976,2009,4.379,2888,5.992,2889,5.992,2890,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[16,2.546,26,0.084,51,0.569,54,2.167,56,2.489,225,1.59,231,3.078,235,2.852,269,1.364,273,3.847,315,3.445,351,1.697,390,1.691,397,0.889,482,2.958,695,2.958,1361,0.915,1490,4.291]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[5,0.871,21,1.345,22,1.507,159,1.737,1074,3.357,2227,2.169]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1475,5.099,2097,5.654,2891,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[5,1.072,21,2.539,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[5,0.871,21,1.345,22,1.507,157,1.983,274,3.825,1074,3.357]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1854,5.976,1855,6.417,2892,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[5,1.072,21,2.539,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2707,3.868,2708,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1475,4.648,2096,5.447,2097,5.154,2893,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2754,3.799,2755,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1475,4.648,2096,5.447,2097,5.154,2894,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[5,0.812,21,1.255,22,1.405,91,1.037,1074,3.131,2227,2.022,2350,2.321]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1475,4.648,2097,5.154,2382,6.492,2895,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[850,0.477]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[51,0.332,91,1.037,338,2.774,632,3.799,2227,2.022,2350,2.321,2896,5.764]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[672,2.954,2897,7.051,2898,7.051,2899,7.051]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[26,0.078,51,0.53,338,5.371,397,1.33,1361,1.369]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[26,0.053,28,0.674,269,0.853,1182,3.464,2754,4.074,2755,4.074]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[29,3.051,1182,3.358,2346,4.971,2854,5.204,2900,5.992,2901,5.992]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[5,1.12,26,0.087,29,4.049,90,2.415,269,1.098,397,1.15,1182,5.712,1361,1.183,1409,5.439,2349,5.967]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[65,0.991,91,1.112,193,1.775,1173,3.772,2227,2.169,2350,2.489]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[713,3.217,2902,6.478,2903,6.478,2904,6.478,2905,6.478]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[26,0.048,45,0.848,51,0.466,56,2.289,91,1.017,195,4.367,196,4.132,202,4.034,204,2.587,225,2.441,390,2.597,392,1.966,397,0.817,423,1.392,669,4.531,1173,4.934,1176,7.021,1177,4.91,1361,0.841,1519,4.514,1785,4.69,1923,5.205]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[219,5.156,422,3.925,672,3.027,800,3.531]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2881,9.217,2882,7.122]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[21,1.338,45,1.287,219,6.121,231,3.078,263,4.493,269,0.849,422,6.108,672,2.575,800,3.004,848,4.493,982,4.612,1010,5.66,1686,5.339,1814,3.804,2085,5.988,2189,5.099,2906,6.147,2907,6.147]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[5,1.018,119,2.211,393,4.682,926,5.156]],["keywords//docs/networking/using-the-linode-shell-lish/",[393,4.57,926,5.032,937,4.923,1136,5.154]],["toc//docs/networking/using-the-linode-shell-lish/",[5,1.139,6,2.397,83,3.36,182,2.44,193,1.624,199,2.194,203,2.328,231,2.83,262,2.605,345,3.726,376,3.794,440,4.514,740,4.242,756,4.91,926,7.35,1105,3.664,2908,5.653,2909,5.653,2910,5.653,2911,5.653,2912,5.653,2913,5.653,2914,5.653,2915,5.653,2916,8.084]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[5,1.224,376,5.834]],["keywords//docs/networking/ssh/using-the-terminal/",[2917,7.735,2918,7.735,2919,7.735]],["toc//docs/networking/ssh/using-the-terminal/",[3,2.718,6,3.394,12,4.198,17,1.327,38,2.611,118,3.053,120,1.295,139,2.987,192,2.398,208,5.454,227,1.238,246,3.053,262,1.972,283,3.716,351,1.815,376,2.871,401,3.958,452,3.305,530,2.576,595,3.549,619,6.272,620,3.416,645,2.871,752,2.82,906,2.773,938,3.939,964,3.21,1113,3.716,1760,2.927,1826,3.305,1891,3.549,2421,3.21,2920,4.279,2921,4.279,2922,4.279]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[175,4.632,498,4.884,499,2.794]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1719,5.85,2923,7.051,2924,7.051,2925,7.051]],["toc//docs/networking/dns/dns-records-an-introduction/",[3,1.797,65,0.952,402,2.816,446,2.737,497,4.927,498,5.182,499,3.728,695,4.029,787,5.468,1248,4.588,1271,4.588,1272,4.742,1414,3.915,1736,4.927,2092,4.063,2770,5.468,2926,5.939,2927,5.468,2928,5.939,2929,5.939,2930,5.939,2931,5.939]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[65,0.991,159,1.737,193,1.775,231,3.094,269,0.853,2227,2.169]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[269,1.068,1881,5.013,2700,6.417]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[12,2.56,16,2.269,26,0.079,45,0.822,51,0.585,56,2.218,65,0.878,225,1.417,235,2.541,269,1.28,273,2.456,337,2.541,345,3.61,390,1.507,397,0.792,400,3.176,423,1.348,482,2.636,642,3.44,695,2.636,924,4.11,963,2.473,1361,0.815,1561,3.909,2392,4.11]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,231,2.886,269,0.796,2227,2.022,2350,2.321]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[713,2.976,1510,4.784,1924,5.204,2932,5.992,2933,5.992,2934,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[120,2.016,193,1.913,722,3.282,1248,5.146,2935,6.134]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2936,8.566,2937,8.566]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[17,1.309,22,1.581,26,0.076,94,2.517,130,1.948,227,1.877,273,2.909,332,1.592,446,2.989,482,3.122,629,4.629,799,1.877,1049,2.454,1248,7.852,2935,9.358,2938,6.486,2939,6.486]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[850,0.477]],["title//docs/networking/dns/dns-manager-overview/",[120,2.388,499,2.794,898,5.767]],["keywords//docs/networking/dns/dns-manager-overview/",[1501,5.131,1502,4.84,1672,5.131,1673,5.131,1719,4.623,1840,4.623,2940,5.573]],["toc//docs/networking/dns/dns-manager-overview/",[5,0.568,32,1.202,38,2.462,45,1.158,61,1.797,62,1.774,65,0.647,110,1.671,114,3.026,120,1.22,203,2.587,242,2.707,286,2.149,397,0.583,401,2.429,402,5.116,491,2.659,498,3.887,499,2.731,500,3.026,624,2.659,661,2.533,695,3.023,800,1.971,1027,2.072,1095,2.948,1414,6.877,1571,3.503,1839,3.346,1840,3.346,1927,3.503,1959,3.503,2927,3.714,2941,4.033,2942,4.033]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[65,1.068,91,1.199,769,2.949,2227,2.338,2350,2.683]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1514,6.417,1905,6.719,2943,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[28,0.674,65,0.991,769,2.736,1194,3.045,2707,4.148,2708,4.074]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1663,7.122,2944,7.735,2945,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[21,2.258,22,1.994,26,0.088,32,1.712,45,0.862,51,0.675,65,1.311,193,1.65,225,2.115,269,0.793,270,1.476,351,1.586,390,2.25]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[28,0.726,65,1.068,769,2.949,2754,4.391,2755,4.391]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1666,5.976,2111,5.976,2854,6.719]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,235,2.582,269,0.768,270,1.43,351,1.536,390,2.199,695,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/tools-reference/linux-package-management/",[4,2.453,95,2.388,120,2.388]],["keywords//docs/tools-reference/linux-package-management/",[294,4.024,701,4.024,1835,4.796,2946,5.209,2947,4.796,2948,4.796,2949,5.209,2950,4.796]],["toc//docs/tools-reference/linux-package-management/",[4,1.709,5,0.774,6,1.445,16,1.412,28,0.372,51,0.196,83,2.026,91,0.613,95,3.334,120,2.956,130,1.024,157,1.094,159,0.958,198,1.721,228,1.64,278,1.833,294,4.246,351,0.941,397,0.493,415,2.331,446,2.533,614,2.633,701,2.633,930,2.38,1326,2.874,1361,0.507,1521,2.11,1675,2.721,1676,2.721,1704,2.96,2947,5.06,2948,3.138,2950,6.359,2951,3.408,2952,3.408,2953,3.408,2954,3.408,2955,3.408,2956,3.408,2957,3.408,2958,3.408,2959,3.408,2960,3.408,2961,5.496,2962,3.408,2963,3.408]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":570,"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":2436,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2027,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":1017,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2139,"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":2285,"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":2306,"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":2839,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2191,"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":2140,"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":274,"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":1716,"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":2388,"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":2861,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2273,"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":784,"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":1574,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2232,"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":92,"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":845,"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":2864,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":932,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1778,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1878,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":231,"title":{"/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/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/monitor-remote-hosts-with-icinga/":{},"/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":797,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1815,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1315,"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":1797,"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":1742,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2165,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1455,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":796,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":588,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":152,"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":1748,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2615,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1202,"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":1750,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1752,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2227,"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":1034,"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":1806,"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":1743,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1792,"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":1795,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1850,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":232,"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":289,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1193,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":271,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1787,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":293,"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":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":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2159,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":93,"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":2754,"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":2416,"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":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2961,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1885,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2472,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":2013,"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":660,"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":1565,"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":2877,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2475,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":487,"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":918,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1564,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1234,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":536,"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":848,"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":694,"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":203,"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":2184,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2124,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":204,"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":1671,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":663,"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/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":87,"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":814,"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":1733,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2712,"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":1302,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":733,"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":2103,"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":1280,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":83,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":921,"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":1041,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1645,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":150,"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":2051,"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":{}}],["ahead",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1359,"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":1003,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":726,"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":1597,"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":1434,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":563,"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":566,"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":1132,"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":1133,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1135,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":628,"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":1388,"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":2299,"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":2275,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1368,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1282,"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":804,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analysi",{"_index":146,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["analyt",{"_index":140,"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":1289,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":702,"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":1295,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1819,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":745,"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":1467,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1464,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1468,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1466,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1465,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1469,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1471,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2590,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":505,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":124,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":269,"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":1882,"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":1816,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1515,"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":933,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2932,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2331,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":699,"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":1509,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2933,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2332,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2569,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":433,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2890,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1189,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1511,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2812,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2934,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2633,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2406,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2715,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1510,"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":2337,"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":2009,"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":2333,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1709,"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":2346,"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":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2537,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2393,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2540,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2397,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1982,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1183,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2542,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2631,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2404,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2810,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2811,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2632,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2405,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1924,"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":901,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":802,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":180,"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":1857,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":224,"title":{"/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/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/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":891,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1301,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":623,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":638,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1372,"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":2281,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":199,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/project-management/install-farmos/":{},"/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":280,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":701,"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":2949,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1835,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2951,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1326,"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":1907,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1908,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1910,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1912,"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":1911,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":496,"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":0,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":215,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1055,"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":1058,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2896,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2897,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":837,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":810,"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":2513,"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":2509,"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":1957,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1437,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":888,"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":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1390,"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":1391,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2661,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1395,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2660,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":367,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":408,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2909,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":144,"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":186,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1656,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1484,"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":2440,"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":348,"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":1279,"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":2081,"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":1897,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":209,"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":1560,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":36,"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":325,"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/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":825,"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":531,"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":127,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2927,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":31,"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":23,"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":1683,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":1637,"title":{},"keywords":{},"toc":{"/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":2441,"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":1440,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2561,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":19,"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":2174,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":507,"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":1366,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2154,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":235,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":877,"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":1216,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":54,"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/tools-reference/tools/divide-files-with-split/":{},"/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":2737,"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":2606,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":306,"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":308,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":33,"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/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":34,"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/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/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":1545,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1539,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2686,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":801,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1635,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":430,"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":195,"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":1459,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1690,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1112,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":600,"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":1046,"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":562,"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":283,"title":{},"keywords":{},"toc":{"/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":1793,"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":1225,"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":1227,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":373,"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":915,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":418,"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":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2798,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1546,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":872,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2118,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":658,"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":2182,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":528,"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":954,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2158,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":778,"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":1343,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1337,"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":459,"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":360,"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":2451,"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":2270,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":609,"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":440,"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":1213,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":1435,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2290,"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":2622,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2294,"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":198,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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/web-servers/caddy/compile-caddy-from-source/":{},"/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":842,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1454,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2604,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1155,"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":1452,"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":2646,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2883,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2723,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2738,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1154,"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":497,"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":840,"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":2061,"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":712,"title":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":723,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2575,"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":2576,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":781,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2359,"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":2277,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2163,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1829,"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":2280,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1754,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1310,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1130,"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":782,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2710,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2056,"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":900,"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":2726,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1373,"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":1519,"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":481,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":163,"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":406,"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":{}}],["center",{"_index":2788,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cento",{"_index":159,"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":2700,"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":1036,"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":902,"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":1413,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1410,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1411,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1412,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1311,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2247,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":677,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_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/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":1718,"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":1258,"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":1156,"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":455,"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":1763,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1764,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1639,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1497,"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":1991,"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":1589,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1592,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1027,"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":1927,"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":1540,"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":1543,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1554,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1542,"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":1555,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1556,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1541,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2068,"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":2075,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2481,"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":2482,"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":2574,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2853,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2480,"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":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 ubuntu 9.10",{"_index":2822,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2823,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2563,"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":2573,"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":2069,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":213,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2550,"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":1409,"title":{},"keywords":{},"toc":{"/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":2878,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":436,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":1007,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":443,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2237,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":2014,"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":2212,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2213,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2597,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":2015,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2021,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":503,"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":2748,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1331,"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":1810,"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":318,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":458,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":492,"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":187,"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":2064,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1261,"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":1095,"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":1443,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":267,"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":1476,"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":1338,"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":857,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":830,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":834,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":341,"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":690,"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":2770,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":358,"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":2484,"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":1990,"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":1054,"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":1078,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1104,"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/":{}},"deprecated":{}}],["come",{"_index":2528,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":6,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":965,"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":1859,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":878,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":73,"title":{},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":976,"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":1150,"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":2791,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":454,"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":15,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2424,"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/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2429,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":905,"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":655,"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":858,"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":859,"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":118,"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":537,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":296,"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":166,"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":1,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["compromis",{"_index":2143,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":548,"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":614,"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":2470,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":151,"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":2456,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1447,"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":1809,"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":542,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":590,"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":2148,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":51,"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/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/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":760,"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":1330,"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":736,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1993,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":344,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1772,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":424,"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":2809,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2488,"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":2489,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2494,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2492,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2491,"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":2496,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2495,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2490,"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":1283,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":182,"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":2516,"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":2515,"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":2867,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1535,"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":937,"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":1147,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1974,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":164,"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":220,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":722,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":687,"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":1707,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1720,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1180,"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":2679,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":155,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1712,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":486,"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":2220,"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":1116,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2503,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1544,"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":1843,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":906,"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":958,"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":939,"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":2161,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2162,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":519,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2087,"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":1888,"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":1237,"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":1241,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1242,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2298,"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":2790,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2681,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1139,"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":1142,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2683,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2682,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1887,"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":96,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2786,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":384,"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":17,"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/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2126,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":910,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":686,"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":1296,"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":1828,"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":1019,"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":37,"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":2766,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2764,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2765,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":249,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptocurr",{"_index":11,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["cryptsetup",{"_index":1934,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1240,"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":1243,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1244,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1245,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1153,"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":1023,"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":60,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":114,"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":129,"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":1040,"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":920,"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":2276,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1037,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":862,"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":1517,"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":861,"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":2215,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1741,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2794,"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":1761,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":410,"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":1402,"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":2852,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2956,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":44,"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":40,"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/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":839,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":69,"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":22,"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":342,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":343,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["dataset",{"_index":522,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2041,"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":890,"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":2502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1341,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1342,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1606,"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":2667,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2656,"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":849,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1251,"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":817,"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":1803,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":91,"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":2705,"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":2343,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2366,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2336,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2214,"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":2365,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1652,"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":1904,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":896,"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":1512,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1524,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2367,"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":2898,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":897,"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":1513,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1905,"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":2943,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2595,"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":2799,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2342,"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":1949,"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":2321,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1651,"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":2773,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":210,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1973,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":2006,"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":1698,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":450,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":818,"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":605,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":599,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":478,"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":1553,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":201,"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":2808,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2058,"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":218,"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":793,"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":485,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2279,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":1005,"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":310,"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":63,"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":737,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1995,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1121,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1446,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":98,"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":1965,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2643,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":534,"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":378,"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":2189,"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":276,"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":2578,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":50,"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":1686,"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":929,"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":1788,"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":1001,"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":2454,"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":1487,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1420,"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":2222,"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":2672,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":12,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":421,"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":2180,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2690,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2725,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":2001,"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":2605,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":254,"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":470,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":131,"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":2658,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1817,"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":2230,"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":{}}],["divid",{"_index":70,"title":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"keywords":{},"toc":{},"deprecated":{}}],["django",{"_index":1313,"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":1272,"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":973,"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":248,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":250,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1274,"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":499,"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":2130,"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":2957,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1502,"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":2370,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1501,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2923,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2925,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":162,"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":165,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":167,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":429,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":680,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":773,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":851,"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":2088,"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":1893,"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":2954,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2675,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2674,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2116,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":402,"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":1719,"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":2940,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1578,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1579,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1576,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2203,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2204,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2198,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2206,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2205,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1593,"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":1948,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2246,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1600,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1595,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2243,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2464,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1931,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2787,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":94,"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":1616,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2948,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1137,"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":2043,"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":567,"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":1442,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1791,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":689,"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":1181,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1706,"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":2135,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":889,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":244,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":589,"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":1970,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1640,"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":2057,"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":2413,"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":2728,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1062,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":579,"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":111,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":977,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1300,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2920,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":789,"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":286,"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":620,"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":2671,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2485,"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":2026,"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":2030,"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":2028,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2029,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2805,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2834,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2835,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2804,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":138,"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":156,"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":136,"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":753,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2774,"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":2775,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":573,"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":574,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":776,"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":2800,"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":2018,"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":1165,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2962,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":340,"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":2177,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":247,"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/websites/forums/install-and-run-askbot-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":1235,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2433,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2430,"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":419,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1177,"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":986,"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":730,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2050,"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":453,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":727,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":192,"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":456,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1701,"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":1438,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2034,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1349,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":316,"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":2745,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2714,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2952,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2958,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1901,"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":2955,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":668,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2197,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":183,"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":1569,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1277,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1057,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":35,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":321,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1841,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":865,"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":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1997,"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":2618,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2415,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2248,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":625,"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":990,"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":1120,"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":622,"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":2156,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1969,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1473,"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":475,"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":2307,"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":653,"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":477,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":259,"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/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["extern",{"_index":1658,"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":1232,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":2,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/game-servers/install-teamspeak/":{},"/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/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["face",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":795,"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":461,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1362,"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":1365,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1148,"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":1370,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1705,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1039,"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":106,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farm",{"_index":767,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["farmo",{"_index":766,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1178,"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":2759,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":207,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2023,"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":1619,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1617,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2300,"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":2614,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":652,"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":2621,"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":2037,"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":157,"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":2841,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2840,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2486,"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":2843,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2842,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2493,"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":2581,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2580,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2483,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2318,"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":2419,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2418,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2234,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2233,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1880,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1879,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1798,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2253,"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":2391,"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":1687,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1033,"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":1498,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2744,"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":2746,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":3,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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/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/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2722,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":748,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2552,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":952,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1339,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":511,"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":2865,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":364,"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":941,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1726,"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":992,"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":404,"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":661,"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":2546,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2443,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2908,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1287,"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":338,"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":1325,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1096,"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":809,"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":994,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":874,"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":876,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":875,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2060,"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":982,"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":2963,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":189,"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":2612,"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":411,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2603,"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":2624,"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":1693,"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":2295,"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":334,"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":2885,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":685,"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":2166,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":591,"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":1425,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1603,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":2002,"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":2004,"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":2122,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1108,"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":1890,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2059,"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":2607,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1255,"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":1064,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2323,"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":2911,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1212,"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":2688,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1779,"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":2662,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1358,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2692,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2585,"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":2588,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1682,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1352,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1042,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1727,"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":641,"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":1110,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":179,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":319,"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":2352,"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":302,"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":1407,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2677,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2090,"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":631,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1099,"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":1059,"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":1247,"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":1669,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1667,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1668,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":740,"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":634,"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":1662,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":771,"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":1354,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2619,"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":1521,"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":1900,"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":147,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["get",{"_index":491,"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":2716,"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":1956,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":870,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":417,"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":735,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2558,"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":168,"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":909,"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":1221,"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":2871,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2487,"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":1643,"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":564,"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":2505,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1660,"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":960,"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":312,"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":1167,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1097,"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":1067,"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":1760,"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/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/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"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":2685,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2719,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2720,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu-tar",{"_index":10,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":84,"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":85,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1378,"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":86,"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":1940,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1939,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":772,"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":1657,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1776,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1777,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1106,"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":1775,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1781,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":935,"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":1125,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":1013,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1308,"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":1898,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1474,"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":1307,"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":715,"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":717,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":714,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":913,"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":1739,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1082,"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":2017,"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":927,"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":1518,"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":1038,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":431,"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":2297,"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":1171,"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":190,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":13,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":1636,"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":559,"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":815,"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":819,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1933,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":317,"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":399,"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":181,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":506,"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":2469,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":998,"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":2100,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2708,"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":1070,"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":161,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hdf",{"_index":561,"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":993,"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":261,"title":{},"keywords":{},"toc":{"/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":608,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":610,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2239,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1812,"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":1002,"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":222,"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":490,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":966,"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":2172,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":942,"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":275,"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":1773,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2655,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":758,"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":764,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1098,"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":509,"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":666,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2691,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1826,"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":821,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":847,"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":172,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":225,"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/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":1678,"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":423,"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":725,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1567,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1568,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1045,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":912,"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":556,"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":2531,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1224,"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":1458,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":908,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1163,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":642,"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":382,"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":1630,"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":337,"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/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":2776,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1876,"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":2377,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1713,"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":1892,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":775,"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":279,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2157,"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":229,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/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":{}}],["icinga2",{"_index":230,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{},"deprecated":{}}],["icmp",{"_index":2012,"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":97,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":925,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1649,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2054,"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":2379,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2284,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2378,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2283,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":480,"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":1943,"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":1262,"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":1723,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2349,"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":624,"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":2644,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":808,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":328,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2743,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":143,"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":1424,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2673,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":397,"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":128,"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":1852,"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":439,"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":366,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2523,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":389,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":26,"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/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":1134,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1141,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":881,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":734,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1223,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":716,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":30,"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":1188,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":779,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1481,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1477,"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":2098,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1203,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1681,"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":1851,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1680,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1051,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":856,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":970,"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":1421,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":885,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":829,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1994,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":553,"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":1215,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1380,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1769,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1356,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":529,"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":1987,"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":1988,"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":1131,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2137,"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":543,"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":751,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":674,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":678,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":331,"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":659,"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":43,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2131,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":1012,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2325,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":175,"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":1916,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1915,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":178,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1648,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2151,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1293,"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":39,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1631,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":644,"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":664,"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":2263,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1145,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1399,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1363,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2525,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1685,"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":632,"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":1299,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1109,"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":2262,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1757,"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":1770,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1735,"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":2687,"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":2647,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2296,"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":219,"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":2625,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2620,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2033,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1369,"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":1364,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2755,"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":29,"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":2347,"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":2396,"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":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2538,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2394,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":946,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":945,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2348,"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":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2539,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2395,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2544,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1984,"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":2399,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1985,"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":2541,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1983,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1185,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2543,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1601,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1267,"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":1426,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1376,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":493,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":489,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":27,"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":473,"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":441,"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":451,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1256,"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":584,"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":683,"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":691,"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":948,"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":2089,"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":285,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":212,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":471,"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":803,"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":1374,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1266,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2417,"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":2817,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":538,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"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":1629,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1168,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":601,"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":104,"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":860,"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":262,"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":1052,"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":2040,"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":1609,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1128,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":299,"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":2428,"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":2427,"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":633,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":949,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2219,"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":1548,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1557,"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":979,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2592,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1774,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":427,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":414,"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":922,"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":1531,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1529,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":743,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1254,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":541,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":769,"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":1516,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2945,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1514,"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":1665,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1909,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1799,"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":1506,"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":412,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":684,"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":692,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1123,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":893,"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":985,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":996,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2641,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":2007,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":420,"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":2168,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1872,"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":1072,"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":2702,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2676,"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":1093,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":597,"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":1250,"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":1253,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1035,"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":1265,"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":1187,"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":82,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2350,"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":1836,"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":1022,"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":2553,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1233,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":811,"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":{},"deprecated":{}}],["level",{"_index":2479,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2879,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":832,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":816,"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":1923,"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":1173,"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":2903,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2902,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":403,"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":1450,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":7,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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":693,"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":1457,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":119,"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":1856,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2176,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2785,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2784,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1858,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1140,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1672,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1677,"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":2905,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1753,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":955,"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":1673,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2146,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2175,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1696,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2919,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2881,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2904,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1959,"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":662,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":113,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":4,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2851,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2768,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2431,"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":2439,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2882,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":940,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2899,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1731,"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":1992,"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":1794,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1800,"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":1999,"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":1596,"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":2946,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1728,"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":1730,"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":2917,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2767,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1322,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2231,"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":1906,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":700,"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":2330,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":926,"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":835,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":530,"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":2036,"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":2080,"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":2873,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1839,"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":1932,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2467,"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":329,"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":508,"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":1634,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":278,"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/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":1874,"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":532,"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":2526,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":698,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2474,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":394,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":957,"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":2473,"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":2476,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":578,"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":1483,"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":2913,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":931,"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":1968,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1894,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2642,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2019,"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":2085,"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":1694,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1194,"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":2109,"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":731,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2274,"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":251,"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":1264,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":170,"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":2797,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2795,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2796,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2627,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":596,"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":602,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":211,"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":173,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1061,"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":1063,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1065,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":777,"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":1867,"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":1381,"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":1384,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1598,"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":2079,"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":323,"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":1961,"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":107,"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":629,"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":504,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1860,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":120,"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/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":2178,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2127,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2629,"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":2123,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":892,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1789,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2287,"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":762,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2421,"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":2289,"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":2709,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2292,"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":2293,"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":447,"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":252,"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":594,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":20,"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":1480,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1786,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":476,"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":2121,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":234,"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":1691,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1200,"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":350,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":483,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2286,"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":2453,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1613,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":565,"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":1627,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1650,"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":2303,"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":2717,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":916,"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":2837,"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":101,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1087,"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":422,"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":2654,"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":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1226,"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":676,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1281,"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":396,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1229,"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":184,"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":2666,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1967,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":188,"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":1821,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":746,"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":747,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1534,"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":2147,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2145,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1179,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1291,"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":1456,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":153,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":866,"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":1624,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":515,"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":1444,"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":100,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1492,"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":2514,"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":2584,"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":1896,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1318,"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":2704,"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":2777,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2763,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2195,"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":1785,"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":1431,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2510,"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":2727,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1259,"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":2583,"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":2392,"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":2208,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1621,"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":606,"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":257,"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":598,"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":2196,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1432,"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":415,"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":2207,"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":273,"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":2466,"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":1808,"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":719,"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":1053,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1355,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":227,"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":2011,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":831,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1309,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2511,"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":1822,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1361,"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":1980,"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":654,"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":2935,"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":2936,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":595,"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":2138,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1377,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1404,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1873,"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":2937,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2351,"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":2639,"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":1490,"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":1653,"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":214,"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":1252,"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":822,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1375,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":2010,"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":555,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":377,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1332,"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":2190,"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":1333,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1655,"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":1736,"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":2693,"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":21,"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":2326,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2891,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2382,"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":2381,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2383,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1855,"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":2892,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2570,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2402,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1853,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2893,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1190,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2894,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2818,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2895,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2097,"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":1854,"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":2384,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1877,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2448,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1475,"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":2751,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":854,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2099,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2750,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2096,"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":2630,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2568,"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":853,"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":1692,"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":1312,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":24,"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":1479,"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":1201,"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":1204,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2420,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":695,"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":2084,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":964,"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":2192,"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":2252,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":208,"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":1963,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1863,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1964,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":99,"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":2264,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":616,"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":2512,"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":2527,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":672,"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":2850,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1831,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1702,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":895,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":603,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":126,"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":2914,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":61,"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":266,"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":1830,"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":47,"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/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/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/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":2376,"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":2375,"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":2758,"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":873,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2355,"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":2260,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2354,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1537,"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":2403,"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":2695,"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":2572,"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":2386,"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":2025,"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":2353,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2267,"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":2266,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1538,"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":1717,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2269,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2613,"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":2371,"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":2261,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2024,"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":1536,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2268,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1451,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1347,"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":2689,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":607,"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":923,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":919,"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":233,"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":221,"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/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/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/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1169,"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":{}}],["non",{"_index":372,"title":{},"keywords":{},"toc":{"/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":1336,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":904,"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":2555,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1638,"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":472,"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":1049,"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":371,"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":370,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":738,"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":2928,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2082,"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":894,"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":899,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":77,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":{}}],["numer",{"_index":80,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["nvim",{"_index":621,"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":1103,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":185,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1149,"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":1408,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":449,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2554,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":1016,"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":1021,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":1018,"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":{}}],["offens",{"_index":1239,"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":1697,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offsit",{"_index":2884,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1758,"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":1549,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1520,"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":1220,"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":241,"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":2218,"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":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":327,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":216,"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":1392,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2071,"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":1075,"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":2094,"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":1385,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":268,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":975,"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":744,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1273,"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":1020,"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":1986,"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":2517,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2327,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2328,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2329,"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":2518,"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":2611,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2848,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":292,"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":997,"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":1298,"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":2792,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1688,"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":1050,"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":741,"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":2320,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2319,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":648,"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":1111,"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":1552,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":361,"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":16,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":950,"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":2315,"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":2339,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2309,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2341,"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":2340,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2731,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1268,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2312,"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":2733,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2732,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2311,"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":2602,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2310,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2601,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2308,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2334,"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":972,"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":1646,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":363,"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":1294,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2462,"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":2591,"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":572,"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":2713,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":798,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1406,"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":2358,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1848,"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":465,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":959,"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":1824,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":898,"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":1288,"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":2210,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":855,"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":1026,"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":95,"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":706,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2950,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":647,"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":2120,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2921,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1348,"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":580,"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":379,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":754,"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":1981,"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":75,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2128,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2125,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1762,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1676,"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":255,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":2414,"title":{},"keywords":{},"toc":{"/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":721,"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":2240,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":709,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":963,"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":2216,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":116,"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":88,"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":667,"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":1048,"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":1394,"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":1929,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2302,"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":671,"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":2067,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":535,"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":1837,"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":2374,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":416,"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":1559,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":205,"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":1847,"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":239,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":349,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":352,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2626,"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":2650,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2741,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":117,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["phonet",{"_index":145,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["php",{"_index":270,"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":1191,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2412,"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":1869,"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":2577,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2678,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1875,"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":1260,"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":1870,"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":2616,"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":2410,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2617,"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":2411,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1090,"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":1586,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1257,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":2003,"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":2380,"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":1849,"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":2258,"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":18,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":53,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":703,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":442,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2070,"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":2706,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2772,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2389,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2407,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2072,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1925,"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":123,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2288,"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":1820,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2052,"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":827,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1463,"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":2221,"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":968,"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":971,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":969,"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":974,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2729,"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":618,"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":137,"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":1588,"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":1344,"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":1275,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1357,"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":1722,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":517,"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":1944,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1305,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1889,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":362,"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":1416,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":277,"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":2073,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":550,"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":1844,"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":1066,"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":2245,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1594,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2242,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2698,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2697,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2859,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_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 on ubuntu",{"_index":2814,"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":2599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2463,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2845,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2696,"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":2813,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_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":{}}],["postfix with mysql",{"_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":{}}],["postgr",{"_index":237,"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":2637,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2445,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":46,"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":1170,"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":2344,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2857,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2571,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_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":{}}],["postgresql on cento",{"_index":2856,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2870,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2858,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2345,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2819,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2636,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2444,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2820,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2821,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2651,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":346,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2749,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":108,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1823,"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":196,"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":576,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2703,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1811,"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":2005,"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":928,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1304,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefix",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["prefork",{"_index":1491,"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":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1047,"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":142,"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":2153,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":718,"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":2735,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":788,"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":791,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1864,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":988,"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":1647,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1486,"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":2435,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1493,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":539,"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":1393,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1303,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1972,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1573,"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":2461,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":315,"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":148,"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":194,"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":533,"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":1566,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":391,"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":2559,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2256,"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":844,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2876,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2648,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":586,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2105,"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":2831,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2106,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2833,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2803,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2335,"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":2107,"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":2110,"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":1561,"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":2235,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":495,"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":281,"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":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-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/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/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":2055,"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":2008,"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":240,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":787,"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":1503,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1105,"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":2659,"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":464,"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":757,"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":1329,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":759,"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":1328,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":217,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1094,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":774,"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":593,"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":2076,"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":2846,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1582,"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":1583,"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":1584,"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":365,"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":704,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":708,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":55,"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/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":154,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":846,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2594,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1080,"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":2589,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2593,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":405,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":696,"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":1591,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2185,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":66,"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":68,"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":407,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2324,"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":516,"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":1206,"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":1921,"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":1523,"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":2886,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1920,"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":2317,"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":2459,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":413,"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":2241,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2862,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":52,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":42,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2442,"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":1249,"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":2314,"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":1960,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2849,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1499,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":303,"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":1029,"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":883,"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":1767,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1759,"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":2108,"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":2031,"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":2866,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":125,"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":2141,"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":2136,"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":2169,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":388,"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":301,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1460,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":498,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/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":{}}],["recordkeep",{"_index":768,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["recov",{"_index":2142,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":944,"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":2278,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["red",{"_index":160,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["red hat",{"_index":158,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"toc":{},"deprecated":{}}],["redi",{"_index":191,"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":645,"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":2519,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1199,"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":838,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2532,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2520,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2408,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2533,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2522,"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":2438,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2039,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1197,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2529,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2038,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1196,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1198,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2521,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":720,"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":2778,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2259,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2255,"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":2257,"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":2635,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2254,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2779,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":1010,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":513,"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":1979,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1528,"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":1827,"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":880,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1371,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2556,"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":2547,"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":1008,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2471,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1074,"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":1076,"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":1071,"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":1195,"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":2736,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1926,"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":228,"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":1144,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":432,"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":401,"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":938,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1236,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":656,"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":1086,"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":1084,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1085,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1807,"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":1547,"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":326,"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":295,"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":395,"title":{},"keywords":{},"toc":{"/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":272,"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":577,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":109,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1136,"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":2223,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":961,"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":2645,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":917,"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":2092,"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":2095,"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":763,"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":1608,"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":1445,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2806,"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":545,"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":25,"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":2181,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":643,"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":1930,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":833,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1367,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":313,"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":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-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/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":1500,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":1210,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":1009,"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":924,"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":1419,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1895,"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":2119,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1081,"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":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":962,"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":2880,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2101,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":864,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":826,"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":1284,"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":1286,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2478,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":324,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2947,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1028,"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":64,"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":1955,"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":474,"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":1522,"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":1207,"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":1209,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":339,"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":1418,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":392,"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":1941,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":947,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1832,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":525,"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":1422,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1423,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1507,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1505,"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":527,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":863,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":526,"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":587,"title":{},"keywords":{},"toc":{"/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":2102,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2357,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2244,"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":1488,"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":2960,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1439,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":501,"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":613,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":585,"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":2179,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1306,"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":1642,"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":2869,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":304,"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":311,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":381,"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":200,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":752,"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":56,"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":479,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":951,"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":139,"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":141,"title":{},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"toc":{},"deprecated":{}}],["seasid",{"_index":2740,"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":2500,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":332,"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":2432,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1482,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1478,"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":869,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":999,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":868,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2545,"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":1004,"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":805,"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":2780,"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":2781,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1942,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":867,"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":59,"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":2249,"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":1998,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1790,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1485,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":649,"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":1089,"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":65,"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/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":761,"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":1938,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1632,"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":290,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1230,"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":1628,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":58,"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":1976,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":380,"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":1397,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":45,"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/tools-reference/tools/divide-files-with-split/":{},"/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":1695,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":669,"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":711,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":953,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1729,"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":2752,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":354,"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":355,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":359,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":841,"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":265,"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":1902,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1590,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":393,"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":1740,"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":2711,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2129,"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":1351,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1297,"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":1633,"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":806,"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":398,"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":518,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":514,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":202,"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":2322,"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":2915,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":245,"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":1396,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1398,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":552,"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":1708,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2086,"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":78,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2684,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2959,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1704,"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":428,"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":1884,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2739,"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":1126,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2694,"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":1068,"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":2000,"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":523,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1164,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2062,"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":2582,"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":2929,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2506,"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":2560,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2117,"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":1833,"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":177,"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":1834,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":353,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":799,"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":729,"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":2771,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2789,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2422,"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":307,"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":357,"title":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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":2657,"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":1228,"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":1945,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1814,"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":615,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":557,"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":2387,"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":2747,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":765,"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":1977,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":102,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":330,"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":914,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2217,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1271,"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":385,"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":1453,"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":1575,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2063,"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":{}}],["split",{"_index":71,"title":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["spreadsheet",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":243,"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":2313,"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":238,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2742,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2211,"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":2373,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1818,"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":1866,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1865,"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":2930,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":665,"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":2825,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1127,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2074,"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":1124,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2824,"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":2826,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2827,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":697,"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":1152,"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":2783,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1151,"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":2434,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2782,"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":1710,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1714,"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":1711,"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":1715,"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":2400,"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":1721,"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":1024,"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":288,"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":291,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":547,"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":457,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1734,"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":1160,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["star",{"_index":9,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["stare",{"_index":2875,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":110,"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":1623,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1353,"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":1092,"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":1577,"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":2680,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1504,"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":2670,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1436,"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":1703,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":67,"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":115,"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":134,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":823,"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":1269,"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":1246,"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":820,"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":1270,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":62,"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":2236,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":592,"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":206,"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":264,"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":1114,"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":943,"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":1113,"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":2133,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2132,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":739,"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":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1238,"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":2549,"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":1006,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":356,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":1000,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":452,"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":2049,"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":500,"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":2793,"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":1129,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":569,"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":1654,"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":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2761,"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":989,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2301,"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":{}}],["suffix",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["suit",{"_index":2238,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":936,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":132,"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":482,"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":2938,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1056,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2762,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":263,"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":1146,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":679,"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":681,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":682,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":728,"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":1796,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2468,"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":1527,"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":2663,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2665,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":197,"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":1449,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":351,"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":1966,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2356,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":724,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":57,"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":2769,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":657,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1891,"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":1077,"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":1614,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":383,"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":2551,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":540,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1317,"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":995,"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":122,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":8,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2721,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["tarbal",{"_index":14,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"deprecated":{}}],["target",{"_index":612,"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":246,"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":1192,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":884,"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":886,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":887,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1433,"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":2078,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1563,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1602,"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":1605,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1604,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1495,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":434,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2170,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2649,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2164,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":650,"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":1978,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1782,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":376,"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":2918,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":494,"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":1290,"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":90,"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/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":1684,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":619,"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 fil",{"_index":2446,"title":{},"keywords":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{},"deprecated":{}}],["text user-interfac",{"_index":749,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":236,"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":2623,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":879,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1218,"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":978,"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":41,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1675,"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":1612,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":675,"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":336,"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":1883,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2171,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1937,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":242,"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":1011,"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":2498,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2065,"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":670,"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":1030,"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":309,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":755,"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":333,"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":1699,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":783,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":792,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":375,"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":1091,"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":1157,"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":2916,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1182,"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":1184,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2901,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":930,"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":558,"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":1119,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":742,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1102,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2640,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":368,"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":2291,"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":335,"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":2134,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1043,"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":1162,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":756,"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":460,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":800,"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":850,"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":2734,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2020,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1316,"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":1489,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1032,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1840,"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":1031,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":750,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":347,"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":1607,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1107,"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":1585,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1448,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":828,"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":2047,"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":226,"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":1101,"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":1952,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2931,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1248,"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":28,"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":2508,"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":2598,"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":2401,"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":2452,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2465,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2449,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2596,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2193,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2271,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2224,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2228,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1780,"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":2112,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":2016,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1211,"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":1664,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2022,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1868,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":903,"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":934,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2860,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2944,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2900,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2801,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2497,"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":2816,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2802,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2093,"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":2250,"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":1324,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2854,"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":2701,"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":2638,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2044,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1663,"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":2111,"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":1922,"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":2507,"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":2699,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2372,"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":2450,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2194,"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":2272,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2229,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1913,"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":2045,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2113,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1389,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1321,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2634,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1666,"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":2046,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2209,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2282,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1689,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":637,"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":1323,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1461,"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":2091,"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":2368,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2369,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1219,"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":1320,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2409,"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":345,"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":983,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1205,"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":1208,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1975,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2423,"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":2664,"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":673,"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":438,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2066,"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":72,"title":{},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2077,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2872,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1345,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":882,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":581,"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":2155,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1842,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":462,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":790,"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":32,"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":130,"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":1044,"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":1950,"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":710,"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":1615,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":400,"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":5,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":74,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2587,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2586,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":149,"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":2104,"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":2167,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1069,"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":1958,"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/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"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":1314,"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":1525,"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":1526,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":843,"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":1403,"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":89,"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":1088,"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":1846,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1641,"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":1838,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2053,"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":1928,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":907,"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":169,"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":1222,"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":1176,"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":991,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":171,"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":38,"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":617,"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":807,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":390,"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":1996,"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":1496,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1530,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2458,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2887,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":705,"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":1783,"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":1946,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":300,"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":2304,"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":2457,"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":435,"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":1784,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1335,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1334,"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":1400,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":284,"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":512,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":469,"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":1494,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1292,"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":258,"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":103,"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":502,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":1014,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":369,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2114,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":981,"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":571,"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":193,"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/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":1871,"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":1700,"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":2042,"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":1175,"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":1387,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":386,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":732,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":713,"title":{},"keywords":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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":1881,"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":2838,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":688,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1319,"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":2305,"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":1340,"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":1285,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":780,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1732,"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":314,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2807,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":640,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":305,"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":1903,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":176,"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":1756,"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":2504,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":484,"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":488,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":911,"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":1533,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":112,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1572,"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":1951,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1117,"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":2524,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":253,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2048,"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":1571,"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":1263,"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":174,"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":2829,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2830,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2847,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2828,"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":468,"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":824,"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":260,"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":785,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1025,"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":551,"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":2530,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":554,"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":446,"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":852,"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":409,"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":1918,"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":1670,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1118,"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":223,"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":1214,"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":1217,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1587,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1346,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1562,"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":320,"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":812,"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":639,"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":1805,"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":1804,"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":1802,"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":2316,"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":1532,"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":1172,"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":1174,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":437,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2032,"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":1989,"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":2035,"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":1100,"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":2724,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":560,"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":2953,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1755,"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":1659,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2874,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":794,"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":294,"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":521,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2115,"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":510,"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":2557,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1379,"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":2652,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2360,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1382,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1383,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2363,"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":2653,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2609,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2364,"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":2855,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2362,"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":2610,"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":1386,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2361,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2718,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":611,"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":1768,"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":1771,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1414,"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":2083,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1115,"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":1971,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2730,"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 e1d88528d9e..da14ac1abda 100644 --- a/themes/docsmith/static/build/lunr.json +++ b/themes/docsmith/static/build/lunr.json @@ -1 +1 @@ -{"store":{"/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-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/platform/meltdown_statement/",[0,5.758,1,7.216,2,6.265,3,6.265]],["keywords//docs/platform/meltdown_statement/",[2,6.11,3,6.11,4,5.276,5,3.459]],["toc//docs/platform/meltdown_statement/",[0,3.223,2,5.456,3,3.507,4,3.028,5,3.791,6,4.039,7,4.039,8,7.216,9,4.039,10,4.039,11,1.667,12,4.039,13,4.039,14,6.284,15,3.028,16,4.481,17,4.589,18,6.284,19,2.88,20,2.871,21,1.211,22,6.284,23,1.794,24,3.507,25,4.039,26,4.039,27,4.589,28,2.018,29,3.718,30,2.817,31,2.236,32,2.304,33,1.91,34,3.028,35,3.507,36,4.039,37,4.039]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[38,0.06,39,2.88,40,5.571,41,6.642]],["keywords//docs/development/python/install_python_miniconda/",[41,7.106,42,7.72,43,7.72]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[38,0.065,44,3.524,45,6.288]],["keywords//docs/applications/containers/install_docker_ce/",[44,3.452,46,4.186,47,7.72]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[38,0.065,44,3.524,48,5.908]],["keywords//docs/applications/containers/install_docker_compose/",[44,3.452,46,4.186,49,7.72]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[38,0.065,50,4.038,51,2.456]],["keywords//docs/development/version-control/how-to-install-git-linux/",[50,3.956,51,2.406,52,4.581]],["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/",[38,0.065,50,4.038,53,4.562]],["keywords//docs/development/version-control/how-to-install-git-mac/",[50,3.956,52,4.581,53,4.469]],["toc//docs/development/version-control/how-to-install-git-mac/",[38,0.098,50,5.694,54,7.191,55,7.154,56,7.154,57,2.348]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[38,0.065,50,4.038,58,4.003]],["keywords//docs/development/version-control/how-to-install-git-windows/",[50,3.956,52,4.581,58,3.922]],["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/",[59,5.086,60,7.196]],["keywords//docs/development/introduction-to-websockets/",[60,5.835,61,4.633,62,7.037,63,7.037]],["toc//docs/development/introduction-to-websockets/",[60,10.405,64,4.609,65,7.001,66,1.409,67,3.013,68,5.249,69,5.805,70,6.445,71,6.445,72,3.497,73,1.112]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[44,3.524,48,5.908,74,1.11]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[44,3.823,48,6.409]],["toc//docs/applications/containers/how-to-use-docker-compose/",[23,2.435,38,0.066,44,4.143,45,4.373,48,6.946,75,1.28,76,1.288,77,1.941,78,4.002,79,1.675,80,3.907,81,2.809,82,2.13,83,5.045,84,4.758,85,3.907,86,3.084,87,3.262,88,2.501,89,1.07,90,3.387,91,2.451,92,3.387,93,2.404]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[79,2.205,94,7.216,95,5.983,96,6.265]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.082,96,6.703,97,7.72]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[21,1.696,38,0.067,39,2.258,54,3.661,74,1.139,79,1.729,96,9.448,98,5.656,99,1.598,100,4.911,101,9.429,102,4.427,103,5.656,104,2.924,105,5.656,106,3.724,107,5.656,108,3.791,109,3.945,110,4.033]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[44,3.524,46,4.272,67,3.391]],["keywords//docs/applications/containers/docker-container-communication/",[44,3.147,46,3.816,111,1.714,112,7.037]],["toc//docs/applications/containers/docker-container-communication/",[38,0.065,44,4.502,45,4.306,46,5.459,48,4.046,66,1.086,67,3.953,74,0.76,75,1.26,76,1.268,82,2.098,111,1.315,113,2.869,114,3.764,115,0.299,116,2.367,117,3.848,118,3.764,119,3.124,120,1.387,121,0.806,122,1.624,123,3.202,124,3.385]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[120,1.854,125,2.076,126,3.464,127,5.983]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[125,2.025,127,5.835,128,1.264,129,5.616]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[54,5.231,72,2.825,75,1.321,76,1.329,85,4.033,99,1.598,115,0.313,120,2.423,121,0.845,122,1.702,125,3.13,126,3.88,129,7.525,130,6.059,131,2.362,132,3.2,133,3.131,134,2.617,135,5.207]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[74,1.017,89,1.409,136,4.837,137,3.068]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[89,1.507,137,3.282,138,7.106]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[38,0.065,39,3.119,66,1.572,73,1.241,75,1.26,76,1.268,89,1.054,115,0.299,119,3.124,120,1.387,136,5.238,137,3.322,139,1.637,140,3.493,141,4.686,142,2.869,143,3.553,144,2.48,145,4.686,146,4.166,147,2.869,148,4.475,149,3.848,150,3.618,151,4.475,152,3.202,153,4.968]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[111,1.758,116,3.165,122,2.172,154,4.459]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[116,2.623,155,3.871,156,3.346,157,5.981,158,5.981,159,5.981]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[23,3.173,75,1.668,76,1.679,93,3.133,111,2.598,126,3.429,156,3.996,160,4.623,161,4.881,162,5.093,163,7.143,164,4.982,165,4.239,166,4.186,167,5.093]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[91,3.227,168,4.459,169,6.642,170,6.642]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[168,5.809,171,7.037,172,5.616]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[21,1.547,74,1.066,75,1.205,76,1.213,79,1.577,148,4.279,156,2.887,168,3.189,169,9.074,170,9.074,172,8.374,173,3.984,174,5.16,175,2.622,176,4.75,177,7.562,178,4.743,179,4.48,180,3.679,181,3.984,182,3.768,183,2.371,184,3.768]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[79,1.887,99,1.744,131,2.579,185,3.315,186,5.12,187,5.361]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[187,6.703,188,4.771,189,7.72]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[38,0.092,73,1.45,75,1.573,76,1.583,111,1.641,187,5.847,190,3.996,191,0.916,192,1.923,193,1.719,194,6.734,195,2.489,196,3.012,197,4.162,198,4.359,199,4.601]],["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/",[20,1.88,74,0.87,126,2.964,192,1.763,200,3.619,201,4.403]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[20,1.821,44,2.675,46,3.243,126,2.871,201,4.264,202,5.506]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[20,1.388,21,1.367,23,2.026,38,0.069,44,2.04,46,4.511,67,2.969,74,1.172,79,1.394,89,0.89,93,2,102,2.141,120,1.172,121,0.681,122,1.372,126,3.994,142,2.425,151,3.781,200,4.875,201,3.252,202,6.35,203,4.76,204,4.56,205,4.56,206,4.56,207,3.96,208,4.56,209,3.781,210,4.56,211,2.425,212,4.56]],["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/",[73,0.806,74,0.715,89,0.991,99,1.434,125,1.46,131,2.12,192,1.45,213,3.806,214,2.905]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[89,1.086,99,1.571,192,1.589,214,3.183,215,5.563,216,5.563,217,5.563]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[38,0.076,66,1.069,74,0.749,75,1.241,76,1.249,89,1.038,115,0.295,213,5.794,214,5.21,218,4.407,219,2.826,220,4.103,221,2.443,222,3.79,223,6.167,224,9.105,225,9.105,226,6.408,227,4.242,228,4.407,229,5.315,230,4.242,231,3.985]],["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/",[232,6.265,233,3.666,234,6.642,235,6.642]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[39,2.581,91,2.892,232,5.614,236,6.466,237,6.466]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[38,0.071,39,1.894,70,4.367,81,2.431,87,1.959,91,2.122,121,0.709,122,1.428,166,2.78,192,1.355,195,1.753,196,2.122,232,4.119,234,7.843,235,8.709,238,2.108,239,4.744,240,3.557,241,3.309,242,5.67,243,4.744,244,2.684,245,3.663,246,3.934,247,4.744,248,2.78,249,3.18,250,7.106,251,4.744,252,4.367,253,4.744,254,2.815,255,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/",[38,0.055,125,1.914,128,1.195,129,5.31,256,4.641]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[125,2.025,127,5.835,128,1.264,129,5.616]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[38,0.06,54,4.694,66,0.981,74,0.687,75,1.139,76,1.146,111,1.188,115,0.402,127,4.042,129,8.179,135,4.488,144,3.333,192,2.473,257,4.875,258,4.488,259,3.4,260,3.89,261,4.695,262,1.188,263,2.477,264,3.56,265,3.4,266,4.861,267,3.058,268,2.34,269,2.971,270,1.776]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[115,0.481,116,3.806]],["keywords//docs/databases/postgresql/configure-postgresql/",[111,1.355,116,2.44,155,3.601,271,2.44,272,5.563,273,5.563,274,5.563]],["toc//docs/databases/postgresql/configure-postgresql/",[75,1.488,76,1.497,79,1.947,109,4.443,111,1.552,115,0.487,116,3.853,155,4.123,267,3.995,275,4.194,276,6.37,277,3.691,278,3.937,279,3.355,280,6.37,281,6.37,282,1.748,283,3.069,284,6.37]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[66,1.086,73,0.857,99,1.524,131,2.254,137,2.294,285,5.396,286,4.686,287,0.588]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[99,1.689,137,2.543,286,5.193,287,0.652,288,5.981,289,5.981]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[38,0.074,53,2.944,58,2.584,66,1.023,72,4.89,73,1.189,75,1.188,76,1.195,86,1.693,106,3.348,115,0.282,198,3.292,199,3.475,238,2.26,268,2.442,286,9.793,290,1.977,291,2.231,292,4.058,293,5.086,294,4.682,295,3.475,296,3.714,297,2.944,298,3.058]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[68,5.41,125,2.076,299,5.145,300,6.265]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.581,125,1.86,300,5.614,301,6.466,302,6.466]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[11,2.412,21,1.752,38,0.069,39,2.332,40,4.511,66,1.932,68,6.201,87,2.412,121,0.873,122,1.758,139,1.772,143,3.847,299,4.166,300,5.073,303,3.782,304,5.379,305,9.6,306,5.843,307,4.166,308,2.371,309,4.075,310,5.843]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[74,1.017,311,6.265,312,4.837,313,6.642]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[311,4.83,312,3.729,313,5.121,314,4.613,315,4.83,316,5.121,317,3.966]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[21,3.044,38,0.054,58,3.296,66,1.305,79,1.983,115,0.36,311,10.705,314,5.379,315,5.632,316,5.972,317,6.343,318,2.758]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[74,0.87,91,2.762,319,5.361,320,4.927,321,5.684,322,5.361]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.581,319,5.614,323,5.953,324,5.953,325,6.466]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[11,1.56,16,2.695,38,0.07,39,1.509,40,2.918,52,2.243,66,0.76,74,0.533,75,0.883,76,0.888,87,1.56,99,1.068,121,1.104,125,1.087,128,0.679,131,1.579,144,1.737,147,2.009,203,3.414,211,2.009,246,3.134,249,2.534,256,2.636,282,2.028,318,1.607,319,7.287,323,3.479,324,6.804,326,3.479,327,2.636,328,3.78,329,1.034,330,3.861,331,2.066,332,2.446,333,3.78,334,3.78,335,0.539,336,3.479,337,2.76,338,2.188,339,2.272,340,2.272,341,1.787,342,2.695,343,2.636]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[121,0.923,122,1.858,167,4.403,344,5.684,345,5.361,346,5.684]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.581,167,4.61,271,2.836,345,5.614,347,6.466]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[11,3.695,38,0.087,39,3.019,40,3.984,75,1.205,76,1.213,82,2.006,125,2.175,167,3.679,203,4.327,249,3.459,271,3.317,282,1.416,326,4.75,329,1.411,345,9.111,346,4.75,348,6.035,349,3.679,350,5.16,351,5.16]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[38,0.051,89,1.206,115,0.342,271,2.708,352,2.207,353,5.361]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[44,2.892,46,3.506,89,1.262,352,2.312,353,5.614]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[20,2.186,38,0.071,44,3.21,75,1.123,76,1.13,87,1.985,89,0.939,115,0.267,120,1.236,121,0.718,132,4.859,133,3.973,184,3.512,271,3.148,352,1.719,353,9.886,354,1.76,355,3.063,356,2.607,357,1.754,358,3.987,359,4.809,360,4.809,361,4.809,362,3.063]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[44,3.881,74,1.223]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[44,3.452,46,4.186,363,7.72]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[44,5.302,74,1.546,124,5.615,364,7.424]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[74,0.87,188,3.816,191,0.84,329,1.689,365,4.63,366,5.684]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[367,4.83,368,5.563,369,5.563,370,4.063,371,5.563,372,5.563,373,5.563]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[20,2.315,28,3.798,38,0.063,44,3.401,67,3.273,73,1.208,279,4.005,366,10.122,370,5.553,374,4.572,375,1.662,376,6.068]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[81,3.698,165,4.282,287,0.786,377,6.265]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[165,4.176,377,6.11,378,6.479,379,7.037]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,1.383,38,0.045,75,0.782,76,0.787,80,2.388,81,1.717,82,2.105,113,1.781,115,0.186,121,0.5,122,1.008,130,2.511,139,1.643,147,1.781,165,1.988,179,2.908,228,2.777,241,2.336,244,1.895,249,2.245,254,1.988,255,2.586,275,2.205,308,1.359,331,1.16,352,1.197,377,7.469,378,7.212,380,3.349,381,3.349,382,3.134,383,2.908,384,2.07,385,5.417,386,5.417,387,1.963,388,3.349,389,3.349,390,2.586,391,3.083,392,2.777,393,2.133,394,3.349,395,8.602,396,3.349,397,2.777,398,3.349,399,5.417,400,3.349,401,3.349,402,2.777,403,3.349,404,3.349,405,3.349]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[121,0.994,122,2.003,287,0.725,406,5.518,407,3.441]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[406,7.088,407,4.42]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[5,3.13,11,2.63,23,2.83,32,1.902,38,0.053,67,3.781,72,4.388,73,1.395,86,2.121,93,2.794,115,0.353,121,0.952,122,1.917,139,1.932,268,3.058,269,3.882,406,8.988]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[408,6.642,409,5.758,410,5.983,411,6.265]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.809,409,5.616,411,6.11,412,3.672]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[28,2.919,38,0.049,66,1.176,74,0.823,75,1.365,76,1.373,79,1.786,87,2.412,115,0.324,409,6.6,410,6.858,411,7.181,412,3.049,413,4.166,414,5.073,415,4.972,416,4.075,417,5.843,418,3.847,419,5.843,420,3.269,421,5.843,422,2.805,423,5.843]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[74,0.938,82,2.587,200,3.9,352,2.379,424,5.778]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[44,3.452,200,4.524,424,6.703]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[11,1.985,23,2.136,52,2.854,75,1.123,76,1.13,82,3.338,87,1.985,93,2.109,113,5.889,115,0.398,121,1.072,122,2.16,424,8.848,425,4.809,426,2.274,427,2.72,428,4.809,429,3.605,430,4.809,431,7.178,432,3.166,433,4.175,434,5.118,435,4.809]],["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/",[20,2.026,74,0.938,203,3.808,207,5.778,436,5.778]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[20,2.143,30,4.908,387,4.124,436,6.11]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[20,2.9,21,1.442,30,5.006,38,0.071,73,1.364,75,1.123,76,1.13,77,2.542,81,2.464,113,2.557,115,0.528,123,2.854,139,1.458,164,3.354,196,3.21,287,0.524,352,1.719,387,2.818,390,3.712,433,4.175,436,7.457,437,2.363,438,3.016,439,2.93,440,4.175,441,2.891]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[20,2.026,21,1.995,87,2.747,442,5.518,443,4.055]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[341,3.058,442,5.362,443,3.94,444,2.28,445,4.848]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[87,4.458,104,4.515,164,6.09,442,8.955,443,6.581]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[446,6.534,447,7.88,448,6.083]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[4,4.848,446,5.362,448,4.992,449,6.466,450,6.466]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[38,0.074,59,5.247,75,2.091,76,2.105,282,2.457,446,7.424,448,6.912]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[74,1.017,259,5.033,451,5.571,452,5.41]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[451,5.96,453,6.16,454,5.788]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[38,0.068,75,1.899,76,1.911,115,0.572,125,2.339,259,5.67,331,2.815,374,4.887,451,6.276,452,6.095]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[74,1.017,287,0.786,437,3.546,455,6.265]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[455,4.515,456,4.787,457,5.2,458,4.149,459,5.2,460,4.149,461,4.787,462,4.014]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[38,0.039,66,0.955,75,1.108,76,1.115,91,2.122,122,1.428,143,3.123,164,3.309,175,2.41,260,3.786,327,3.309,382,2.18,390,3.663,455,9.574,458,3.786,460,5.67,461,7.843,462,7.822,463,4.744,464,4.744,465,8.52,466,8.52,467,4.744,468,4.367,469,4.744]],["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/",[74,0.76,115,0.299,173,4.166,188,4.829,207,4.686,282,1.481,470,3.553]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[470,5.082,471,7.106,472,7.72]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[20,1.092,21,1.076,28,1.792,38,0.03,54,2.322,66,1.437,74,0.506,75,0.838,76,0.843,79,1.75,108,2.405,115,0.452,121,0.855,122,1.723,173,5.513,188,6.756,203,2.053,261,1.945,308,1.456,331,1.242,335,0.512,420,2.007,438,2.25,470,6.81,473,3.115,474,5.311,475,2.157,476,2.285,477,2.77,478,3.115,479,2.322,480,3.303,481,2.558,482,3.303,483,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/",[91,2.762,188,3.816,484,4.63,485,3.763,486,5.684,487,5.684]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[92,3.438,168,3.438,299,3.966,458,4.439,485,3.39,488,5.563,489,4.439]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[20,1.304,21,1.284,23,1.903,38,0.036,72,2.14,73,0.68,74,0.927,75,1,76,1.007,87,1.768,92,4.065,93,1.879,115,0.237,121,0.983,122,1.979,132,3.721,142,2.278,192,1.223,195,1.583,254,2.542,261,3.566,318,1.821,327,2.988,339,2.575,486,9.413,487,8.266,490,6.577,491,2.773,492,6.577,493,3.552,494,3.552,495,6.577,496,3.719]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[20,1.546,104,2.625,121,0.758,122,1.528,164,3.541,191,0.691,331,1.758,497,2.84,498,2.699]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[499,6.11,500,6.11,501,7.037,502,6.11]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[38,0.065,75,1.815,76,1.827,104,4.018,115,0.556,120,1.997,191,1.057,329,2.125,474,4.348,497,6.216]],["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/",[38,0.045,115,0.299,271,2.367,331,1.869,503,4.686,504,4.306,505,4.306,506,4.306]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[503,6.11,505,5.616,506,5.616,507,6.11]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[23,1.754,38,0.033,46,2.141,72,3.084,75,0.922,76,0.928,82,2.955,115,0.477,125,1.136,133,2.186,178,4.768,198,2.556,271,3.334,275,2.6,290,1.535,331,1.367,332,2.556,356,5.058,489,3.151,503,9.546,506,6.067,508,3.428,509,7.465,510,3.635,511,3.635,512,2.754,513,3.635,514,3.949,515,3.274,516,2.042]],["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/",[73,0.857,99,1.524,131,2.254,213,4.046,214,3.088,227,4.306,262,1.315,517,4.968]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[518,6.401,519,7.106,520,7.72]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[21,1.197,32,1.193,38,0.083,64,2.629,67,1.719,73,0.634,75,0.933,76,0.939,87,1.649,89,0.78,106,2.629,115,0.345,120,1.026,121,0.597,122,1.202,136,4.175,137,2.648,191,0.543,198,2.585,199,2.729,213,4.67,214,4.382,223,6.111,226,7.777,282,1.096,297,2.312,444,1.408,445,4.67,517,7.963,518,3.311,521,3.993,522,3.993,523,3.993,524,5.408]],["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/",[38,0.048,40,4.446,121,0.861,122,1.733,132,3.258,271,2.526,505,4.596]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[505,6.16,506,6.16,507,6.703]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[11,2.019,23,1.314,33,1.398,66,0.595,75,0.691,76,0.695,79,1.495,91,1.322,93,1.297,115,0.481,120,0.76,121,1.203,125,1.8,132,4.113,133,1.637,140,1.914,183,1.359,203,1.692,241,2.062,271,2.145,279,1.557,282,0.812,283,1.033,290,1.149,331,1.694,356,2.652,362,1.883,440,2.567,477,2.283,505,5.801,506,6.923,507,7.533,508,2.567,509,4.247,515,2.452,525,4.247,526,2.452,527,2.108,528,2.957,529,2.957,530,2.722,531,3.22,532,2.452,533,2.722,534,2.722,535,2.567,536,2.452,537,2.452,538,3.068,539,2.567,540,2.957]],["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/",[541,5.518,542,4.174,543,5.31,544,6.126,545,5.31]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.221,546,5.563,547,5.121,548,5.121,549,5.121,550,5.563,551,5.563]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[23,2.513,38,0.047,39,2.258,64,6.208,66,1.138,75,1.321,76,1.329,93,2.481,111,1.378,120,1.453,121,1.207,122,2.432,139,1.715,203,3.236,329,2.21,354,2.07,543,4.513,544,7.44,548,5.207,549,7.44,552,5.656,553,5.656,554,3.495]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[74,0.938,165,3.949,555,5.778,556,6.126,557,6.126]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[114,4.908,165,4.176,555,6.11,558,7.037]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[38,0.08,66,1.467,75,1.703,76,1.714,87,3.01,114,5.084,165,5.71,166,4.272,308,3.906,331,3.332,531,4.8,555,6.33]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[44,2.762,73,0.981,74,0.87,115,0.342,375,1.35,559,4.767]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[44,3.452,303,4.997,559,5.96]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[38,0.046,44,3.533,48,4.109,57,1.656,73,1.472,75,1.28,76,1.288,86,1.825,91,2.451,111,1.335,115,0.514,139,1.662,156,5.184,238,2.435,268,3.793,375,1.198,559,7.828,560,4.373,561,5.045,562,4.231,563,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/",[38,0.055,387,3.9,564,5.778,565,5.138,566,5.31]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[387,3.505,564,5.193,565,4.617,567,4.171,568,4.772,569,5.506]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[19,3.79,21,2.317,38,0.076,75,1.241,76,1.249,115,0.295,277,2.233,331,1.841,387,5.858,564,9.221,565,5.966,566,4.242,569,4.893,570,4.893,571,5.315,572,3.499,573,3.882,574,5.315,575,5.315,576,3.285,577,3.79,578,5.315,579,5.315]],["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/",[115,0.4,407,3.731,580,4.751,581,7.216]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[262,2.082,407,4.42]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[72,4.388,74,1.238,75,1.488,76,1.497,100,5.531,115,0.353,201,4.542,268,4.217,298,3.83,335,0.908,407,4.542,516,3.294,580,4.194,582,5.282,583,6.37,584,6.37,585,4.776,586,6.37,587,3.78]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[73,1.146,121,1.078,122,2.172,559,5.571]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[303,5.533,559,6.599]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[38,0.064,57,2.335,73,1.687,75,1.241,76,1.249,115,0.589,139,1.612,140,3.44,192,2.207,238,3.433,268,3.71,282,1.459,357,1.299,559,7.717,560,4.242,561,4.893,588,5.315,589,3.882]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[79,2.034,121,0.994,122,2.003,191,0.905,590,4.174]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[191,1.163,590,5.361]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[59,3.733,66,1.282,75,1.488,76,1.497,102,2.99,121,0.952,245,4.918,246,5.282,270,2.32,309,4.443,475,3.83,512,4.443,590,6.307,591,8.087,592,5.893,593,4.27,594,6.37,595,4.542]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[38,0.06,128,1.296,256,5.033,596,6.265]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[44,3.452,329,2.111,596,6.703]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[5,2.055,38,0.035,46,4.276,57,1.264,66,0.841,75,0.977,76,0.983,87,1.727,115,0.437,176,5.944,198,2.707,199,2.858,209,5.354,221,1.922,277,1.757,290,1.626,296,3.054,298,2.514,340,3.882,352,1.495,537,3.468,596,8.32,597,2.917,598,5.606,599,6.456,600,3.468,601,5.944,602,2.804,603,3.85,604,3.136,605,4.182,606,2.482,607,6.539,608,3.065]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[152,4.282,592,4.229,609,4.525,610,7.216]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[152,5.578,611,7.501]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[20,2.95,21,2.905,317,6.909,612,4.334]],["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/",[66,1.086,74,0.76,116,2.367,271,2.367,451,4.166,476,3.437,613,5.396,614,4.968]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[111,1.881,116,3.386,271,3.386]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[15,4.691,16,4.461,23,2.78,38,0.089,75,1.461,76,1.471,93,2.744,115,0.552,116,3.806,139,1.898,451,6.699,496,5.433,614,7.988,615,8.677,616,3.501]],["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/",[121,0.923,122,1.858,407,3.193,617,5.361,618,7.915]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[99,1.826,262,1.575,287,0.704,407,3.343,617,5.614]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[19,3.092,38,0.036,66,1.818,74,0.611,75,1.013,76,1.019,77,1.536,79,2.465,102,2.036,115,0.368,120,1.114,123,2.573,132,3.755,139,1.315,188,2.68,287,0.472,308,1.76,335,0.618,352,1.55,382,1.993,407,4.673,426,2.051,437,2.131,582,3.596,616,2.426,617,9.284,619,1.811,620,3.992,621,4.336,622,3.092,623,4.336,624,4.336,625,4.336]],["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/",[20,1.88,21,1.851,44,2.762,66,1.242,132,3.493,626,5.361]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[44,2.892,46,3.506,627,6.466,628,6.466,629,6.466]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[21,3.008,44,4.487,66,1.564,75,1.815,76,1.827,86,2.587,132,4.396,352,2.778,626,8.711,630,6.444]],["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/",[20,1.643,73,0.857,74,0.76,165,3.202,192,1.541,631,4.686,632,4.968,633,4.968]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[193,1.246,497,2.731,631,4.238,634,4.238,635,4.881,636,2.974,637,2.934,638,3.565,639,4.881]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[20,1.84,64,3.978,66,1.216,73,0.96,75,1.411,76,1.42,86,2.012,87,3.496,183,2.777,221,2.777,291,2.65,341,4.005,352,2.16,426,2.858,631,5.247,632,7.796,640,4.413,641,4.503,642,4.066,643,5.011,644,2.255]],["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/",[73,0.761,74,0.675,128,0.861,191,0.652,192,1.369,213,3.593,214,2.742,219,2.548,227,3.824,645,2.102]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[223,4.439,226,4.613,519,5.121,524,4.83,646,5.121,647,4.439,648,5.563]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[38,0.076,75,1.26,76,1.268,91,3.494,115,0.299,213,7.548,214,5.255,218,4.475,219,2.869,221,2.48,223,6.235,226,6.479,230,4.306,231,4.046,524,6.784,645,3.427,649,4.166,650,3.385,651,6.784,652,3.848]],["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/",[39,2.657,57,2.011,66,1.339,221,3.058,485,4.055]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.581,653,6.466,654,6.466,655,5.614,656,6.466]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[21,1.981,38,0.055,39,3.596,57,2.722,72,3.301,73,1.05,74,0.931,75,1.543,76,1.553,126,3.172,191,0.899,246,5.479,279,3.48,290,2.569,657,6.608,658,6.608,659,6.608,660,4.712,661,6.608]],["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/",[38,0.055,115,0.369,128,1.195,256,4.641,662,6.655]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[663,7.106,664,7.72,665,7.72]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[23,3.05,38,0.093,73,1.091,75,1.603,76,1.614,93,3.011,115,0.512,223,5.478,608,2.668,663,9.622,666,2.05,667,3.55,668,3.247]],["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/",[38,0.055,115,0.369,287,0.725,437,3.271,669,4.055]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[89,1.507,287,0.841,669,4.704]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[23,3.05,38,0.097,75,1.603,76,1.614,89,1.34,93,3.011,115,0.381,238,3.05,375,1.5,412,3.582,566,5.478,669,6.37,670,3.884]],["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/",[38,0.055,99,1.88,115,0.369,131,2.779,671,5.778]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[671,7.422,672,4.27]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[38,0.066,75,1.856,76,1.868,86,2.646,87,3.28,115,0.44,192,2.269,270,2.895,671,8.836,673,3.905,674,7.946]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[74,1.017,79,2.205,120,1.854,675,7.216]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[120,1.808,357,1.72,676,7.037,677,6.479]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[86,3.058,113,4.884,120,2.36,642,4.41,678,8.457,679,7.33]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[31,3.684,87,2.747,498,3.538,652,4.745,680,5.138]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[680,5.433,681,7.037,682,7.037,683,7.037]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[38,0.074,66,1.305,75,1.515,76,1.525,191,0.882,198,4.199,199,4.432,262,1.58,268,3.114,269,3.953,290,2.521,595,6.343,608,2.521,667,3.354,680,8.433,684,5.15]],["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/",[38,0.055,287,0.725,437,3.271,637,4.001,685,5.31]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[685,5.16,686,6.466,687,6.466,688,6.466,689,6.466]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[19,5.198,38,0.099,75,1.703,76,1.714,89,1.423,114,5.084,375,1.593,434,5.198,616,4.079,685,7.679,690,6.045]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[121,1.078,122,2.172,691,6.265,692,5.41]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[262,1.267,406,4.311,407,2.689,691,4.515,693,2.619,694,5.2,695,5.2,696,5.2]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[23,3.307,38,0.081,67,3.204,74,1.049,75,1.739,76,1.75,93,3.265,238,3.307,331,2.578,407,3.849,691,8.47,692,5.581,697,6.172]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[21,1.851,74,0.87,79,1.887,227,4.927,318,2.625,698,5.684]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[699,7.037,700,7.037,701,7.037,702,7.037]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[38,0.054,59,3.801,74,1.254,75,1.515,76,1.525,79,1.983,102,3.045,123,3.849,124,4.068,318,3.782,382,2.981,698,8.189,703,5.008,704,5.972,705,4.271,706,5.972,707,4.009,708,5.379,709,5.632]],["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/",[21,1.618,38,0.045,111,1.315,287,0.588,375,1.179,437,2.652,710,4.046,711,4.475]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[111,1.457,375,1.307,711,4.959,712,5.506,713,5.193,714,4.617]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[38,0.086,57,1.737,75,1.342,76,1.351,84,4.991,87,2.373,115,0.527,196,2.571,203,3.289,374,3.456,375,2.079,710,8.209,711,6.779,715,5.748,716,4.098,717,5.748,718,3.784]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[21,1.437,38,0.04,115,0.266,119,2.775,192,1.369,443,2.92,484,3.593,719,4.161,720,4.792,721,4.161]],["keywords//docs/applications/project-management/install-farmos/",[636,4.704,719,6.703,722,3.408]],["toc//docs/applications/project-management/install-farmos/",[23,2.83,38,0.053,64,4.194,75,1.488,76,1.497,87,2.63,93,2.794,115,0.353,183,2.927,193,1.626,283,2.226,295,4.353,341,3.012,375,1.392,616,3.564,642,3.058,719,9.412,723,6.37,724,3.182,725,4.194]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[44,2.976,66,1.339,322,5.778,420,3.723,660,4.745]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[420,4.783,726,8.548]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[44,4.424,52,4.512,66,1.53,322,6.602,392,6.305,393,4.843,420,6.515,426,3.596,727,7,728,7]],["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/",[66,1.339,73,1.057,729,2.368,730,2.812,731,5.31]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[732,6.466,733,6.466,734,6.466,735,6.466,736,6.466]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[38,0.084,73,1.03,75,1.515,76,1.525,87,2.678,93,2.845,115,0.36,124,4.068,264,4.737,287,0.707,341,3.068,443,3.953,642,3.114,703,5.008,730,2.741,731,5.176,737,3.591,738,6.487,739,2.433,740,5.972]],["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/",[38,0.06,287,0.786,437,3.546,741,6.265]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[637,4.641,741,6.703,742,5.384]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[23,1.975,38,0.082,73,0.706,74,0.626,75,1.038,76,1.045,79,2.068,93,1.95,115,0.375,121,0.664,122,1.338,168,2.747,190,2.638,191,0.92,195,1.643,203,2.544,233,2.259,238,3.006,264,3.247,266,2.98,270,1.619,290,1.728,295,3.038,354,1.627,512,3.101,590,2.788,644,1.659,730,1.879,739,1.667,741,9.008,743,4.092,744,4.446,745,4.446,746,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/",[74,0.812,123,3.418,262,1.403,279,3.033,332,3.728,747,4.596,748,4.446]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[612,2.892,747,5.16,749,5.953,750,6.466,751,6.466]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[0,6.201,38,0.065,75,1.815,76,1.827,115,0.431,154,4.803,279,4.093,645,3.408,747,8.866,752,2.236,753,3.789]],["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/",[20,1.546,38,0.042,73,0.806,136,3.403,137,2.158,191,0.691,409,4.051,410,4.209,754,5.076]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[60,5.835,644,2.627,755,7.037,756,7.037]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[21,2.019,38,0.056,57,2.035,66,1.355,75,1.573,76,1.583,115,0.506,136,4.514,137,2.863,191,0.916,331,2.332,409,7.282,410,7.567,739,2.526,757,6.734,758,4.104,759,3.451]],["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/",[31,4.362,59,4.618,565,6.083]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[565,6.599,568,6.821]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[21,1.669,31,5.173,38,0.066,66,1.12,75,1.3,76,1.308,79,2.442,142,2.96,198,3.603,199,3.804,240,4.174,474,3.115,489,4.442,565,7.885,566,8.63,760,9.346,761,5.567,762,3.969]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[38,0.048,287,0.627,331,1.994,437,2.831,644,2.15,763,5.001,764,5.001]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.581,763,5.614,764,5.614,765,6.466,766,3.314]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[23,2.882,38,0.074,66,1.305,75,1.515,76,1.525,93,2.845,111,1.58,115,0.36,121,0.969,122,1.952,238,2.882,352,2.319,427,3.67,644,2.421,763,9.938,764,5.632,767,4.432]],["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/",[38,0.042,73,0.806,128,0.912,263,2.579,287,0.553,768,4.673,769,4.673,770,4.673,771,3.469]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[120,1.537,770,5.506,772,5.981,773,4.171,774,5.981,775,5.981]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[31,2.856,38,0.043,61,3.397,73,1.742,74,0.727,75,1.205,76,1.213,115,0.286,173,5.838,263,4.548,308,2.094,331,2.619,538,3.236,705,4.979,768,8.24,769,8.24,773,3.599,776,3.768,777,4.279,778,4.48,779,3.984,780,5.16]],["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/",[38,0.06,73,1.146,287,0.786,781,6.642]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[287,0.767,782,7.037,783,7.037,784,7.037]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[23,2.936,38,0.075,75,1.543,76,1.553,93,2.898,109,6.283,238,2.936,781,6.083,785,9.009,786,9.009,787,9.009,788,9.009,789,9.009,790,6.608]],["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/",[38,0.051,115,0.342,271,2.708,287,0.673,437,3.035,791,3.283]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[792,7.037,793,7.037,794,4.414,795,6.11]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[20,1.809,38,0.049,66,1.195,67,2.557,74,0.837,87,3.455,115,0.329,132,3.361,133,5.363,183,2.73,271,2.606,308,2.411,362,6.698,412,3.1,525,5.158,526,4.926,791,3.159,795,5.158,796,5.941,797,5.158,798,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/",[39,2.465,66,1.242,203,3.533,287,0.673,329,1.689,799,5.684]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.082,655,6.703,800,7.72]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[28,3.301,38,0.055,39,4.092,40,5.102,66,1.813,75,1.543,76,1.553,102,3.102,203,6.299,329,2.464,655,5.738,801,4.826,802,4.826,803,6.608]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[804,0.471]],["title//docs/applications/containers/how-to-use-dockerfiles/",[74,1.223,805,6.338]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[44,3.452,46,4.186,805,5.638]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[44,3.811,66,1.714,77,3.768,81,4.367,420,4.768,805,8.469]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[38,0.051,115,0.342,287,0.673,375,1.35,437,3.035,806,4.927]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[375,1.687,807,7.106,808,7.72]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[38,0.059,73,1.135,75,1.668,76,1.679,111,1.74,115,0.396,140,4.623,259,4.982,277,3.001,331,2.473,375,2.484,806,8.509]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[38,0.055,115,0.369,287,0.725,437,3.271,809,5.138]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[809,5.96,810,7.72,811,7.72]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[38,0.081,66,1.498,75,1.739,76,1.75,115,0.541,262,1.813,282,2.043,375,1.627,427,4.211,448,5.747,684,4.31,809,7.531]],["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/",[5,3.035,31,3.418,128,1.109,287,0.673,516,3.193,812,2.818]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[128,1.074,287,0.652,813,4.617,814,4.617,815,4.484,816,4.264]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[5,5.723,20,2.315,38,0.063,115,0.548,282,2.087,290,2.956,291,3.335,354,2.783,812,4.515]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[20,1.88,21,1.851,74,0.87,115,0.342,470,4.065,612,2.762]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[470,5.082,471,7.106,817,7.72]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[38,0.053,54,5.686,59,3.733,75,1.488,76,1.497,79,1.947,121,0.952,122,1.917,126,4.217,318,2.708,470,7.487,612,4.497,818,6.37,819,5.531,820,4.918]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[11,3.253,432,5.188,821,5.755]],["keywords//docs/security/getting-started-with-selinux/",[268,3.104,821,4.722,822,6.466,823,6.466,824,6.466]],["toc//docs/security/getting-started-with-selinux/",[23,3.53,38,0.066,75,1.856,76,1.868,93,3.485,178,4.984,821,8.646,825,7.946,826,7.946]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[20,2.026,44,2.976,46,3.608,89,1.299,352,2.379]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[44,3.147,46,3.816,805,5.14,827,7.037]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[44,4.687,46,6.22,80,5.933,108,5.578,318,3.538,352,2.975,538,5.218]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[38,0.055,115,0.369,331,2.304,332,4.307,828,5.778]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[828,5.193,829,5.981,830,5.981,831,4.484,832,5.981,833,5.981]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[23,3.612,31,4.5,38,0.068,74,1.146,93,3.565,248,4.764,828,10.366,834,8.129]],["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/",[38,0.051,44,2.762,46,3.348,352,2.207,402,5.12,420,3.455]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[44,3.147,46,3.816,805,5.14,835,7.037]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[11,2.949,38,0.059,44,4.769,75,1.668,76,1.679,89,1.394,198,4.623,270,2.602,402,5.923,420,5.312,484,5.355,609,4.48,836,7.143,837,6.575]],["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/",[38,0.06,287,0.786,799,6.642,838,6.642]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[839,7.72,840,7.72,841,7.72]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[19,4.712,21,1.981,23,2.936,38,0.055,75,1.543,76,1.553,87,2.728,93,2.898,167,8.214,227,5.273,340,3.973,838,9.436,842,5.738,843,6.608,844,5.102]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[804,0.471]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[38,0.065,287,0.858,821,5.755]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[51,2.016,821,4.722,845,5.953,846,6.466,847,5.362]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[23,3.88,38,0.073,75,2.039,76,2.053,93,3.83,340,5.25,821,6.377,845,8.038]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[44,3.881,59,5.086]],["keywords//docs/applications/containers/introduction-to-docker/",[44,3.452,46,4.186,805,5.638]],["toc//docs/applications/containers/introduction-to-docker/",[23,3.88,44,5.244,93,3.83,420,4.886,626,7.582,805,6.377]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[38,0.051,125,1.776,128,1.109,219,3.283,619,2.579,848,5.361]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[848,6.11,849,7.037,850,4.482,851,6.11]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[23,2.166,32,1.456,38,0.041,66,0.981,75,1.139,76,1.146,79,1.49,87,2.994,93,2.138,106,3.21,115,0.402,120,1.253,125,1.402,192,1.392,221,2.24,261,2.643,262,1.188,270,1.776,282,2.376,283,1.703,294,4.488,297,2.822,462,3.764,580,3.21,585,3.655,608,1.895,619,2.036,848,9.66,852,3.56,853,4.875]],["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/",[99,1.282,121,0.678,122,1.366,131,1.895,132,2.567,271,1.99,287,0.494,437,2.23,545,3.622,837,4.178,854,3.504]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[111,1.457,854,4.617,855,5.981,856,4.171,857,4.484,858,3.013]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[75,1.079,76,1.086,79,2.129,106,3.042,115,0.256,121,1.041,132,5.281,139,1.401,165,2.742,168,4.305,191,0.629,198,2.99,199,3.157,211,2.456,268,2.218,270,1.683,271,3.677,297,2.675,354,1.691,525,4.011,606,2.742,616,3.897,644,3.129,724,3.48,739,1.733,854,7.207,859,2.942,860,2.99,861,2.707]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[178,4.942,393,5.019,821,5.755]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[821,6.993]],["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/",[50,3.411,52,3.949,74,0.938,282,1.826,426,3.147]],["keywords//docs/quick-answers/linux/how-to-use-git/",[51,2.194,862,7.037,863,5.835,864,7.037]],["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/",[74,1.223,865,6.7]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[51,2.194,865,5.433,866,5.835,867,5.018]],["toc//docs/quick-answers/linux/how-to-use-wget/",[74,1.329,79,2.883,290,3.666,865,7.281,868,9.431]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[20,2.197,74,1.017,92,4.459,309,5.033]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[92,3.696,175,3.038,209,4.959,869,5.981,870,4.368,871,4.484]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[20,2.897,87,3.928,92,6.405,108,3.853,198,3.72,199,3.928,209,9.706,228,4.766,309,7.228,315,4.991,475,3.456,871,4.309,872,5.748]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[20,2.197,38,0.06,115,0.4,873,6.265]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[873,6.11,874,5.835,875,6.11,876,4.908]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[20,1.896,38,0.086,66,1.541,75,0.933,76,0.939,108,2.677,115,0.52,121,0.597,122,1.202,130,2.994,175,3.165,201,2.847,203,2.285,211,2.123,261,2.165,270,2.269,277,1.678,331,1.383,349,2.847,354,2.28,355,2.543,420,2.234,479,4.032,606,2.37,612,1.786,642,1.917,873,7.51,877,3.993,878,2.994,879,3.676,880,2.847,881,2.34,882,3.993,883,3.187,884,2.785,885,2.729]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[38,0.048,99,1.627,131,2.405,191,0.784,287,0.627,854,4.446,886,5.759]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[111,1.457,854,4.617,856,4.171,858,3.013,887,5.981,888,5.981]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[38,0.065,59,3.162,75,1.26,76,1.268,79,1.649,82,2.098,87,3.226,115,0.433,183,2.48,191,0.734,198,3.493,199,3.687,211,2.869,221,2.48,262,1.315,270,1.966,271,2.367,422,2.591,600,4.475,684,3.124,802,3.941,854,8.248,889,3.848,890,4.968,891,3.764,892,4.968]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[20,2.026,46,3.608,51,2.074,74,0.938,893,4.745]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[44,3.452,893,5.504,894,7.72]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[27,4.826,32,1.974,46,5.558,51,3.195,115,0.366,121,0.987,178,4.144,201,4.712,309,4.609,479,4.277,606,3.921,645,2.898,842,5.738,895,6.608,896,5.273,897,5.738,898,4.712]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[38,0.06,99,2.038,131,3.014,667,3.731]],["keywords//docs/development/java/install-java-on-centos/",[99,2.507,899,5.614,900,6.466,901,5.953]],["toc//docs/development/java/install-java-on-centos/",[38,0.082,75,1.776,76,1.787,200,4.456,203,4.351,667,6.021,902,7,903,6.068,904,7,905,5.701]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[38,0.06,128,1.296,219,3.836,667,3.731]],["keywords//docs/development/java/install-java-on-debian/",[128,1.264,218,5.835,899,6.11,901,6.479]],["toc//docs/development/java/install-java-on-debian/",[38,0.082,75,1.776,76,1.787,200,4.456,203,4.351,667,6.021,902,7,903,6.068,904,7,905,5.701]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[38,0.06,287,0.786,437,3.546,667,3.731]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[287,0.704,667,3.343,899,5.614,905,4.848,906,3.996]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[38,0.069,75,1.943,76,1.956,121,1.243,203,4.761,218,6.899,667,4.302,801,6.077,905,6.238,906,5.142]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[38,0.055,89,1.299,287,0.725,437,3.271,907,5.778]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[89,1.168,186,4.959,857,4.484,870,4.368,907,5.193,908,5.981]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[11,2.63,32,1.902,38,0.084,66,1.282,74,0.898,89,1.715,115,0.557,254,3.78,264,4.652,287,0.694,354,2.332,375,1.392,739,2.389,907,8.731,909,6.37,910,6.37]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[20,2.399,352,2.817,420,4.409]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[51,2.406,420,4.319,911,5.638]],["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/",[20,2.399,156,4.409,270,2.87]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[51,2.406,420,4.319,911,5.638]],["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/",[46,3.912,51,2.249,645,3.165,893,5.145]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[893,5.018,912,7.037,913,4.633,914,5.616]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[267,5.218,612,3.721,645,4.596,880,5.933,891,5.803,893,7.472,915,5.803,916,6.899]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[20,2.197,917,4.459,918,3.836,919,3.249]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[51,2.406,420,4.319,911,5.638]],["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/",[20,2.399,175,4.003,871,5.908]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[51,2.406,420,4.319,911,5.638]],["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/",[51,2.074,74,0.938,79,2.034,211,3.538,920,4.99]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[312,4.718,332,4.555,920,5.276,921,5.616]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[74,1.231,79,2.669,106,5.749,282,2.397,920,8.097,922,7.582,923,8.732]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[38,0.051,73,0.981,99,1.744,131,2.579,870,4.51,924,5.12]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[925,7.106,926,7.106,927,7.72]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[38,0.059,67,3.074,73,1.135,75,1.668,76,1.679,87,2.949,115,0.396,327,4.982,355,4.549,374,4.294,616,3.996,870,5.216,924,8.842,928,5.7,929,6.575]],["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/",[38,0.051,73,0.981,287,0.673,437,3.035,870,4.51,924,5.12]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[925,7.106,926,7.106,930,7.72]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[38,0.059,67,3.074,73,1.135,75,1.668,76,1.679,87,2.949,115,0.396,327,4.982,355,4.549,374,4.294,616,3.996,870,5.216,924,8.842,928,5.7,929,6.575]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[38,0.06,99,2.038,131,3.014,931,4.837]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[99,1.826,185,3.471,742,4.51,931,4.335,932,5.362]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[23,2.992,38,0.076,66,1.355,75,1.573,76,1.583,93,2.953,111,1.641,115,0.373,193,1.719,283,2.353,290,2.617,327,4.697,331,2.332,616,3.768,931,7.438,933,4.162]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[51,2.249,318,3.068,339,4.338,708,5.983]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[312,3.729,332,3.601,434,3.966,708,4.613,709,4.83,921,4.439,934,5.563]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[51,1.95,77,2.216,312,5.817,318,3.689,567,4.364,604,4.691,609,3.924,777,5.188,935,5.76,936,5.76,937,6.257,938,5.188,939,4.691,940,6.257,941,6.257,942,6.257,943,5.188,944,6.257,945,5.188,946,5.76,947,5.433,948,6.257]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[74,1.11,318,3.35,867,5.618]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[51,2.194,866,5.835,867,5.018,949,4.482]],["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/",[74,1.11,318,3.35,950,6.288]],["keywords//docs/quick-answers/linux/how-to-use-head/",[51,2.016,79,1.976,866,5.362,950,5.16,951,6.466]],["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/",[74,1.11,318,3.35,952,6.288]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[51,2.016,79,1.976,866,5.362,952,5.16,953,6.466]],["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/",[20,1.754,74,0.812,441,3.463,600,4.776,608,2.239,954,5.001,955,4.017]],["keywords//docs/security/advanced-ssh-server-security/",[51,1.621,73,0.826,99,1.469,262,1.267,287,0.566,612,2.325,749,4.787,956,4.787]],["toc//docs/security/advanced-ssh-server-security/",[31,2.591,32,1.398,74,1.191,75,1.093,76,1.1,113,2.489,161,3.199,183,3.884,269,2.853,277,1.967,283,2.953,426,2.214,475,2.814,512,3.265,526,3.882,608,1.82,612,2.094,724,2.338,913,3.082,919,2.108,957,4.681,958,3.338,959,3.338,960,4.309,961,5.833,962,4.065,963,4.681,964,4.309,965,4.309,966,3.338,967,4.309,968,4.065,969,4.309,970,4.681,971,4.681,972,4.681]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[38,0.055,287,0.725,437,3.271,973,5.138,974,6.655]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[287,0.566,637,3.126,857,3.899,973,4.014,975,4.787,976,4.787,977,4.787,978,5.2]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[23,1.251,32,1.403,38,0.075,39,1.124,52,1.671,54,1.822,66,1.577,73,0.96,75,0.658,76,0.662,79,1.435,82,1.094,86,1.564,93,1.235,111,1.144,115,0.469,116,2.06,139,2.725,203,3.457,238,2.684,268,2.255,270,1.026,282,1.289,283,2.464,354,1.031,383,2.445,393,2.991,545,3.748,585,3.521,597,1.964,645,2.06,690,2.335,933,2.903,973,7.997,979,2.592,980,2.592,981,2.445,982,2.592,983,3.748,984,1.443]],["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/",[99,1.524,120,1.387,131,2.254,985,5.706,986,4.968,987,7.193]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[99,1.689,191,0.814,985,4.368,986,5.506,988,5.981,989,5.981]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[32,2.091,38,0.058,74,0.987,75,1.635,76,1.646,82,2.721,115,0.388,191,0.952,354,3.429,375,1.53,985,6.841,987,10.377,990,5.405]],["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/",[5,2.652,33,2.552,34,4.046,74,0.76,99,1.524,881,3.162,991,2.267,992,4.968]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[993,6.16,994,7.72,995,7.72]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[5,4.762,38,0.081,115,0.537,881,5.679]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[996,3.837]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[20,2.197,31,3.994,33,3.412,38,0.06]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[874,5.835,875,6.11,876,4.908,997,6.479]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[20,3.155,21,1.723,31,3.182,32,1.717,33,2.718,38,0.068,115,0.453,175,2.92,290,2.234,299,4.098,354,2.992,420,3.216,601,5.291,603,5.291,608,2.234,876,4.009,880,4.098,881,4.791,918,3.056,998,5.748,999,5.748,1000,3.928]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1001,3.812,1002,6.842,1003,5.755]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1002,6.11,1003,5.14,1004,5.835,1005,5.276]],["toc//docs/platform/upgrade-to-hourly-billing/",[496,8.651,1001,4.82,1006,3.756]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[20,2.642,871,6.507]],["keywords//docs/platform/disk-images/resizing-a-linode/",[871,6.409,1001,4.135]],["toc//docs/platform/disk-images/resizing-a-linode/",[20,3.122,871,7.687]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[38,0.055,219,3.538,287,0.725,437,3.271,1007,5.778]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[287,0.841,1007,6.703,1008,7.72]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[38,0.062,75,1.739,76,1.75,115,0.413,126,3.574,279,3.92,282,2.043,283,2.601,446,6.172,608,2.893,753,3.629,1007,10.027]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[38,0.06,99,2.038,131,3.014,668,3.412]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[111,1.457,287,0.652,668,2.828,858,3.013,1009,4.087,1010,5.506]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[11,2.583,21,1.876,38,0.052,66,1.259,75,1.461,76,1.471,87,2.583,88,2.855,91,2.798,111,1.524,115,0.347,221,2.875,248,3.667,258,5.76,283,3.032,342,4.461,538,3.924,668,5.344,1011,4.993]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[66,1.159,73,0.915,287,0.627,437,2.831,1012,5.302,1013,5.302,1014,5.759]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[73,1.226,287,0.841,1015,7.72]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[38,0.049,66,1.195,67,2.557,72,2.968,73,1.827,75,1.388,76,1.397,115,0.329,121,0.888,282,1.631,296,4.339,439,3.62,475,3.572,620,5.469,776,4.339,1012,9.682,1016,5.837,1017,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/",[38,0.06,99,2.038,131,3.014,1018,4.837]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[99,1.988,1018,4.718,1019,6.479,1020,7.037]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[23,2.026,38,0.077,45,3.639,66,0.918,73,0.724,75,1.065,76,1.072,93,2,102,2.141,111,1.111,115,0.552,121,1.031,131,1.905,166,2.672,191,0.62,193,1.164,211,2.425,262,1.111,277,1.916,283,2.41,290,1.773,354,1.669,375,0.997,498,2.425,531,3.002,587,2.706,644,1.702,859,2.904,933,4.263,1018,6.677,1021,4.198]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[38,0.06,287,0.786,437,3.546,1018,4.837]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[287,0.767,1018,4.718,1019,6.479,1022,7.037]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[23,2.108,38,0.059,45,3.786,66,0.955,73,0.754,75,1.108,76,1.115,93,2.081,102,2.227,111,1.156,115,0.562,121,1.062,166,2.78,191,0.645,193,1.211,211,2.522,262,1.156,277,1.993,283,2.483,290,1.844,354,1.737,375,1.037,498,2.522,531,3.123,587,2.815,644,1.771,859,3.022,933,4.392,1018,6.792,1021,4.367]],["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/",[74,0.675,115,0.266,119,2.775,128,0.861,287,0.522,725,3.155,730,2.025,1023,1.798,1024,2.808,1025,3.974]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[128,1.162,287,0.704,1023,2.425,1025,5.362,1026,4.722]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[38,0.046,73,0.871,75,1.28,76,1.288,79,1.675,87,2.262,111,1.335,115,0.304,119,3.173,139,1.662,262,1.925,270,1.996,608,2.13,724,2.738,729,1.95,753,2.672,919,4.171,1023,4.2,1025,4.544,1027,4.373,1028,5.045,1029,4.544,1030,5.48,1031,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/",[38,0.051,99,1.744,111,1.504,116,2.708,131,2.579,1032,3.348]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[116,3.087,856,4.908,1033,5.616,1034,4.289]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[32,0.973,38,0.056,66,1.346,67,1.402,75,0.761,76,0.766,87,2.186,99,0.92,108,4.485,111,2.333,115,0.181,116,3.38,126,1.564,142,1.731,155,3.427,221,2.433,262,1.877,279,1.715,283,1.138,332,2.108,340,1.958,382,3.075,475,4.022,510,2.998,608,2.995,618,2.998,650,2.043,673,1.601,1035,5.199,1036,5.295,1037,5.295,1038,2.442,1039,6.304,1040,2.225,1041,3.257]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[66,1.452,121,1.078,668,3.412,1042,7.216]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[271,3.087,668,3.328,858,3.545,1043,7.037]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[11,2.453,23,2.64,66,1.195,75,1.388,76,1.397,79,2.558,87,2.453,93,2.606,115,0.537,120,1.527,121,0.888,122,1.788,139,1.802,183,2.73,279,3.129,283,2.076,619,2.481,668,3.958,684,3.44,724,2.968,1044,4.682,1045,4.926]],["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/",[74,0.607,89,0.841,128,0.774,144,1.981,219,2.291,497,2.411,516,3.416,644,1.609,915,3.006,1046,3.327,1047,3.148]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[89,1.168,497,3.346,644,2.232,794,3.751,1046,4.617,1048,5.193]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[23,2.398,31,2.987,38,0.076,66,1.086,75,1.26,76,1.268,79,1.649,89,1.525,93,2.367,115,0.592,139,1.637,144,2.48,193,1.377,211,2.869,382,2.48,387,3.162,497,3.019,616,3.019,1046,7.772,1049,4.686,1050,4.046,1051,5.396,1052,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/",[20,2.642,1053,6.338]],["keywords//docs/platform/disk-images/clone-your-linode/",[911,5.638,1053,7.295]],["toc//docs/platform/disk-images/clone-your-linode/",[20,3.122,1053,7.488]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[38,0.06,99,2.038,131,3.014,191,0.982]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[99,2.18,191,1.05,856,5.384]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[23,2.327,38,0.075,75,1.223,76,1.231,87,2.162,93,2.297,115,0.55,120,1.346,134,2.423,191,1.04,192,1.495,262,1.862,266,3.51,329,1.432,476,4.869,498,2.784,512,3.652,642,2.514,644,2.853,1054,4.179,1055,7.037,1056,5.583,1057,4.179,1058,4.821]],["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/",[74,0.675,99,1.354,123,2.844,131,2.002,160,3.102,161,3.275,279,2.524,612,2.143,748,3.7,919,2.158]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[612,3.452,1059,7.106,1060,7.72]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[23,3.111,38,0.058,57,2.115,75,1.635,76,1.646,93,3.071,115,0.388,121,1.046,123,4.155,183,4.305,279,4.933,724,3.497,748,5.405,1061,7.001,1062,6.079,1063,4.532]],["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/",[74,0.607,123,2.558,128,0.774,160,2.79,161,2.945,219,2.291,279,2.27,287,0.47,437,2.118,612,1.927,748,3.327,919,1.94]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[128,1.162,287,0.704,612,2.892,1059,5.953,1064,6.466]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[23,3.111,38,0.058,75,1.635,76,1.646,93,3.071,115,0.388,121,1.046,123,4.155,183,4.305,279,5.56,724,3.497,725,4.609,748,5.405,1062,6.079,1063,4.532]],["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/",[73,0.981,115,0.342,266,4.139,608,2.4,693,3.111,1065,3.533]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[407,3.639,619,2.939,693,3.545,1065,4.027]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[73,1.158,75,1.703,76,1.714,121,1.089,122,2.194,139,2.211,270,2.656,355,4.643,592,4.272,608,2.834,693,3.672,753,3.554,1065,4.171,1066,4.383,1067,5.466,1068,5.817]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[51,1.925,74,0.87,168,3.816,172,4.927,175,3.137,589,4.51]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[128,1.264,172,5.616,847,5.835,1069,7.037]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[20,1.939,38,0.073,66,1.282,74,0.898,75,1.488,76,1.497,115,0.353,128,1.578,168,6.215,172,5.083,175,4.463,219,3.387,262,1.552,282,1.748,354,2.332,358,5.282,881,3.733,1070,4.776]],["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/",[20,1.546,91,3.342,188,3.137,191,0.691,244,2.872,1071,5.076,1072,4.408,1073,4.408]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[547,6.479,1073,6.11,1074,4.231,1075,6.479]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[11,1.864,20,0.818,21,0.806,28,2.256,64,1.769,66,1.536,75,0.628,76,0.632,79,1.38,108,3.027,121,0.401,122,0.809,125,1.299,132,3.874,139,0.815,183,1.235,195,0.993,271,5.158,298,1.615,318,1.92,331,1.564,420,3.831,480,4.158,538,2.833,642,1.29,860,2.923,1070,3.386,1073,9.565,1075,8.837,1076,2.687,1077,2.228,1078,2.228,1079,2.687,1080,2.473,1081,4.516]],["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/",[38,0.06,287,0.786,437,3.546,497,4.037]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[499,6.11,500,6.11,502,6.11,1082,6.479]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[38,0.065,66,1.086,75,1.26,76,1.268,79,2.388,89,1.054,115,0.558,121,0.806,180,3.848,191,0.734,193,1.377,277,3.282,478,4.686,497,5.978,511,4.968,512,6.406,660,3.848,1082,8.455,1083,5.396]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[74,0.938,183,3.058,279,3.505,612,2.976,889,4.745]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[279,2.738,612,2.325,747,4.149,889,3.707,1084,5.2,1085,5.2,1086,4.787,1087,4.787]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[20,1.643,28,2.696,75,1.26,76,1.268,87,2.228,183,5.119,262,1.903,277,2.267,279,2.842,414,4.686,541,4.475,612,2.413,724,3.903,747,4.306,889,6.548,1000,3.687,1047,3.941,1063,3.493,1086,4.968,1088,5.396,1089,7.813,1090,4.686,1091,5.396]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[20,2.197,38,0.06,51,2.249,1092,6.265]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[31,3.31,874,4.959,1092,5.193,1093,5.981,1094,5.981,1095,5.981]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[5,2.574,20,1.594,23,2.327,27,3.824,38,0.075,51,2.383,57,1.582,73,0.832,75,1.223,76,1.231,93,2.297,115,0.55,175,2.66,178,3.284,262,1.276,282,1.437,290,2.035,354,1.917,420,2.93,479,3.389,602,3.51,606,3.107,884,3.652,1092,7.838,1096,3.824,1097,4.179,1098,5.236]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[38,0.065,99,2.226,1099,4.802]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1099,4.289,1100,7.037,1101,7.037,1102,7.037]],["toc//docs/websites/cms/install-cpanel-on-centos/",[5,3.441,20,2.132,21,2.099,38,0.058,74,1.32,86,2.331,115,0.519,444,3.722,666,2.798,758,4.266,1099,5.708,1103,6.445]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[126,4.166,608,3.373]],["keywords//docs/networking/remote-access/",[611,5.16,1104,6.466,1105,6.466,1106,6.466,1107,6.466]],["toc//docs/networking/remote-access/",[74,1.126,115,0.309,121,0.832,136,5.356,152,5.546,184,4.065,444,2.817,485,3.392,591,5.124,592,5.985,608,3.106,612,2.49,619,3.337,641,4.248,880,3.969,891,5.573,917,3.44,1063,3.603,1108,4.442]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[99,1.627,644,2.15,739,2.16,759,2.952,1109,4.017,1110,3.612,1111,1.862]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[99,1.689,1110,3.751,1111,1.934,1112,4.484,1113,4.772,1114,4.617]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[66,1.409,75,1.635,76,1.646,87,2.89,147,3.722,354,2.563,644,2.613,739,4.228,759,3.588,918,4.98,1115,6.533,1116,6.445,1117,6.445]],["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/",[128,0.969,287,0.588,516,2.79,644,2.014,739,2.024,759,2.766,1109,3.764,1110,3.385]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[128,1.074,287,0.652,1110,3.751,1112,4.484,1113,4.772,1114,4.617]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[66,1.409,75,1.635,76,1.646,87,2.89,147,3.722,354,2.563,644,2.613,739,4.228,759,3.588,918,4.98,1115,6.533,1116,6.445,1117,6.445]],["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/",[89,1.206,264,4.51,352,2.207,429,4.63,644,2.305,1118,4.927]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[89,1.507,264,5.638,644,2.881]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,2.942,66,1.069,73,0.844,75,1.241,76,1.249,89,1.038,115,0.295,139,1.612,144,4.184,183,2.443,262,1.295,266,3.563,270,1.936,342,3.79,355,5.799,422,2.552,593,3.563,673,2.612,958,3.79,959,3.79,1119,4.103,1120,5.315,1121,5.315,1122,5.315,1123,5.315,1124,5.315,1125,5.315,1126,5.315,1127,5.315,1128,5.315]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[5,3.271,31,3.684,99,1.88,131,2.779,812,3.037]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[99,1.826,813,4.992,814,4.992,815,4.848,816,4.61]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[5,5.723,20,2.315,38,0.063,115,0.548,282,2.087,290,2.956,291,3.335,354,2.783,812,4.515]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[120,1.854,233,3.666,476,4.596,1056,5.27]],["keywords//docs/websites/host-a-website-with-high-availability/",[454,5.276,516,3.639,672,3.516,1108,5.616]],["toc//docs/websites/host-a-website-with-high-availability/",[21,1.171,38,0.063,73,0.62,75,0.912,76,0.918,87,3.116,111,0.951,115,0.546,132,2.209,139,2.289,191,0.833,262,0.951,266,2.618,268,3.624,269,4.6,271,1.713,277,1.641,299,2.784,375,0.853,443,2.38,444,1.377,485,2.38,497,2.185,512,2.723,592,2.288,602,2.618,1044,3.425,1055,7.866,1057,6.024,1058,5.635,1108,3.116,1129,3.905,1130,6.121,1131,2.618]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[59,4.618,476,5.019,1056,5.755]],["keywords//docs/websites/introduction-to-high-availability/",[120,1.808,233,3.575,454,5.276,1108,5.616]],["toc//docs/websites/introduction-to-high-availability/",[73,1.03,79,1.983,111,1.58,125,1.866,192,1.852,259,4.524,282,1.78,382,2.981,452,4.864,458,5.176,476,6.957,706,5.972,852,4.737,1056,7.978,1108,7.099]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[38,0.06,287,0.786,370,5.27,437,3.546]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[287,0.767,367,6.11,370,5.14,437,3.459]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,2.298,20,1.695,38,0.046,51,2.491,53,4.626,58,4.059,67,3.439,73,1.269,75,1.3,76,1.308,115,0.309,262,1.356,298,4.804,365,7.008,370,7.898,587,4.742,589,4.065,606,3.303]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[38,0.06,116,3.165,287,0.786,437,3.546]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[116,2.836,857,4.848,1033,5.16,1034,3.94,1132,4.335]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[38,0.066,66,1.88,75,1.3,76,1.308,111,1.946,115,0.309,116,4.937,126,2.672,142,2.96,155,3.603,262,1.946,283,1.945,287,0.606,416,3.882,437,2.736,608,3.106,1032,3.018,1035,3.185,1039,3.665,1133,4.174]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[38,0.055,287,0.725,437,3.271,668,3.147,1134,6.126]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[111,1.457,287,0.652,668,2.828,858,3.013,1009,4.087,1010,5.506]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[11,2.728,21,1.981,38,0.055,66,1.33,75,1.543,76,1.553,87,2.728,88,3.016,91,2.955,111,1.61,115,0.366,221,3.037,248,3.873,283,2.309,538,4.144,668,5.448,1011,5.273]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[73,0.857,74,0.76,192,1.541,287,0.588,437,2.652,1134,4.968,1135,3.289,1136,5.396]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[672,3.856,1135,4.704,1137,7.106]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[38,0.043,54,3.34,66,1.038,75,1.205,76,1.213,85,3.679,102,2.422,115,0.286,120,2.533,196,2.308,270,1.88,308,2.094,318,2.194,329,2.696,331,1.787,339,3.102,355,3.286,429,3.869,484,3.869,616,4.231,935,4.75,1118,4.118,1135,4.608,1138,6.566,1139,4.48,1140,1.985,1141,5.16]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[32,1.844,128,1.109,219,3.283,262,1.504,287,0.673,636,3.763]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[32,1.661,191,0.757,193,1.42,636,3.39,637,3.344,1142,3.662,1143,5.121]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[8,5.923,32,2.133,66,1.437,75,1.668,76,1.679,79,2.183,88,3.26,156,3.996,178,4.48,262,1.74,282,1.96,290,2.776,498,5.047,539,6.202,604,5.355,1001,3.455]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[38,0.055,191,0.905,287,0.725,437,3.271,1144,3.723]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1145,7.037,1146,7.037,1147,7.037,1148,7.037]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[38,0.073,74,1.231,75,2.039,76,2.053,139,2.648,191,1.188,1144,6.042]],["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/",[38,0.042,51,1.583,89,0.991,193,1.296,214,2.905,287,0.553,375,1.11,437,2.495,1149,2.579]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[89,1.374,193,1.796,857,5.276,1149,3.575]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[38,0.072,73,1.378,75,1.461,76,1.471,89,1.945,111,1.524,115,0.347,120,1.608,139,1.898,192,1.787,193,1.597,214,3.58,277,2.629,329,1.711,352,2.237,375,1.368,753,4.231,1140,2.407,1149,3.179]],["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/",[38,0.055,214,3.808,287,0.725,437,3.271,722,2.937]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[857,4.848,1150,6.466,1151,6.466,1152,6.466,1153,6.466]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[38,0.08,66,1.195,74,0.837,75,1.388,76,1.397,111,1.447,115,0.464,120,1.527,139,1.802,191,1.139,193,1.516,214,3.4,277,2.496,329,1.625,375,2.117,643,4.926,722,2.623,753,4.08,1154,5.941,1155,5.941]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[287,0.786,437,3.546,1001,3.491,1156,3.546]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[287,0.841,437,3.794,1001,3.735]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[5,3.13,20,1.939,32,1.902,38,0.053,86,2.121,122,1.917,154,3.937,287,1.095,354,2.332,437,3.13,476,4.057,538,3.995,737,3.526,945,5.282,984,3.265,1001,4.865,1156,4.317,1157,5.282]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[38,0.051,73,0.981,128,1.109,219,3.283,287,0.673,791,3.283]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[791,3.18,850,3.809,1158,5.981,1159,5.981,1160,5.981,1161,5.506]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[20,2.68,32,1.497,33,2.371,38,0.081,75,1.171,76,1.178,77,1.776,90,3.098,115,0.539,121,0.749,122,1.509,123,2.975,128,0.901,133,2.775,262,1.221,277,2.106,278,3.098,282,1.376,287,0.546,354,1.835,358,4.157,362,3.193,791,5.168,861,2.938,1044,4.142,1162,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/",[38,0.055,99,1.88,115,0.369,131,2.779,791,3.538]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[99,1.988,791,3.742,856,4.908,1161,6.479]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[20,2.68,33,2.371,38,0.073,74,0.707,75,1.171,76,1.178,77,1.776,88,2.288,90,3.098,115,0.488,121,0.749,122,1.509,133,2.775,184,3.661,262,1.221,277,2.106,278,3.098,279,2.64,282,1.376,354,1.835,358,4.157,362,3.193,791,5.514,861,2.938,919,2.257,1044,4.142,1162,4.615]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[38,0.051,128,1.109,219,3.283,287,0.673,1163,3.664,1164,5.12]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[125,1.72,287,0.652,850,3.809,1163,3.549,1165,5.981,1166,5.981]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[23,2.596,38,0.069,66,1.176,75,1.365,76,1.373,81,2.994,93,2.563,115,0.324,191,0.795,192,2.362,261,4.484,283,2.041,291,2.563,292,4.663,296,4.267,354,2.139,387,3.424,608,2.271,1040,3.992,1163,6.538,1164,4.845]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[74,0.715,82,1.973,89,0.991,115,0.281,287,0.553,412,2.649,737,2.81,1167,4.673,1168,2.699]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[89,1.168,138,5.506,1169,3.596,1170,5.981,1171,5.981,1172,4.009]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,3.01,38,0.095,66,1.467,75,1.703,76,1.714,82,2.834,89,1.423,115,0.533,412,3.804,1167,8.858,1168,3.876]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[20,2.399,38,0.065,1173,6.842]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1173,7.422,1174,8.548]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[20,2.594,38,0.071,51,2.656,59,4.994,179,7.399,354,3.119,1173,10.069]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[38,0.048,74,0.812,287,0.627,434,4.107,497,3.222,737,3.188,1175,5.001]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[191,0.707,287,0.566,387,3.047,497,2.909,1176,5.2,1177,5.2,1178,5.2,1179,4.014]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[19,4.166,32,2.867,38,0.092,77,2.07,109,4.075,111,1.423,121,0.873,122,1.758,124,3.665,252,5.379,318,2.484,387,3.424,434,5.897,497,4.627,666,1.745,802,4.267,831,4.381,1175,7.181,1179,4.511]],["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/",[89,1.124,104,2.978,233,2.926,1047,4.206,1180,5.302,1181,5.302,1182,4.446]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[50,3.314,1182,4.992,1183,4.992,1184,6.466,1185,6.466]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[28,3.568,38,0.079,66,1.437,75,1.668,76,1.679,89,1.853,120,1.835,329,1.953,412,3.727,670,4.041,1180,6.575,1181,8.739,1182,7.329]],["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/",[38,0.055,128,1.195,287,0.725,1186,6.126,1187,6.126]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[773,4.51,776,4.722,1188,6.466,1189,5.953,1190,5.953]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[31,2.898,38,0.044,67,2.254,73,1.577,75,1.223,76,1.231,115,0.29,173,6.97,308,2.125,331,1.813,666,1.564,705,3.448,771,6.169,778,4.547,779,4.043,1186,9.138,1187,9.138,1189,4.821,1190,4.821,1191,4.821,1192,5.236,1193,4.821]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[38,0.051,66,1.242,168,3.816,644,2.305,739,2.316,1194,6.175]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[739,2.895,1195,7.72,1196,7.72]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[8,4.544,32,2.36,38,0.046,66,1.103,75,1.28,76,1.288,102,2.573,124,3.437,168,6.267,254,4.688,277,3.319,290,2.13,390,4.231,644,3.458,739,3.803,1197,10.14,1198,7.901]],["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/",[73,0.806,240,3.806,287,0.553,703,3.919,737,2.81,1199,4.673,1200,4.673,1201,4.673,1202,4.673]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[287,0.474,1016,3.033,1172,2.915,1202,4.003,1203,4.348,1204,4.348,1205,4.348,1206,4.348,1207,4.348,1208,4.003,1209,3.357]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,2.412,38,0.049,73,1.525,75,1.365,76,1.373,115,0.324,121,0.873,178,3.665,240,6.201,630,4.845,666,1.745,913,3.847,1016,7.281,1119,4.511,1199,7.614,1200,7.614,1201,7.614,1210,4.511,1211,5.379]],["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/",[38,0.048,73,0.915,263,2.926,1164,4.776,1212,5.302,1213,5.302,1214,5.001]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[773,4.908,1209,5.433,1215,7.037,1216,7.037]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[20,2.09,38,0.057,73,1.469,74,0.967,75,1.603,76,1.614,115,0.381,263,4.697,354,2.513,773,4.788,943,5.692,1164,7.666,1212,8.511,1213,8.511]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[38,0.048,128,1.035,191,0.784,193,1.47,219,3.062,1217,4.776,1218,4.206]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[191,0.664,193,1.246,850,3.109,1048,4.238,1140,1.878,1219,4.881,1220,2.702,1221,4.493,1222,4.493]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[38,0.062,75,1.739,76,1.75,115,0.541,191,1.013,193,2.777,364,6.172,462,5.747,915,5.192,1217,8.089,1221,6.852]],["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/",[287,0.673,352,2.207,737,3.418,1223,5.684,1224,5.361,1225,4.767]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1223,4.787,1224,4.515,1225,4.014,1226,5.2,1227,4.787,1228,5.2,1229,4.515,1230,5.2]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[38,0.084,66,1.282,73,1.012,75,1.488,76,1.497,82,3.909,89,1.244,137,2.708,140,5.686,219,3.387,352,2.277,905,4.776,906,3.937,1224,5.531,1225,6.782,1227,5.864,1229,5.531]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[38,0.055,73,1.057,773,4.641,776,4.86,1016,4.641]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[773,3.88,776,4.063,1016,3.88,1208,5.121,1209,4.295,1231,5.121,1232,5.563]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[23,3.111,38,0.078,57,2.115,73,1.112,75,1.635,87,2.89,93,3.071,221,3.217,245,5.405,262,1.706,327,4.883,331,2.424,384,4.327,773,6.533,939,5.249,1016,4.883]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[115,0.342,128,1.109,219,3.283,1023,2.316,1233,4.767,1234,4.927]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[444,1.833,729,1.85,850,3.312,1023,1.95,1233,4.014,1234,4.149,1235,4.515,1236,4.787]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[38,0.034,87,2.641,115,0.355,121,1.424,122,2.868,130,3.099,139,1.254,183,1.899,255,3.191,277,2.688,279,2.177,341,3.026,429,3.099,443,2.519,444,2.256,759,2.118,779,3.191,861,2.422,1023,2.936,1070,3.099,1233,6.803,1234,5.105,1235,5.555,1236,3.805,1237,4.133,1238,4.133,1239,4.133,1240,4.133,1241,3.589,1242,4.133,1243,2.365,1244,3.019,1245,4.133]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[38,0.06,287,0.786,437,3.546,1246,6.265]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[287,0.767,729,2.504,1246,6.11,1247,6.479]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[32,1.362,38,0.077,51,1.422,57,1.378,66,1.388,75,1.065,76,1.072,102,2.141,111,1.111,115,0.253,120,1.772,124,2.86,191,1.132,193,1.164,214,3.947,270,1.661,283,1.593,290,1.773,329,1.886,340,2.742,343,3.181,354,1.669,375,1.508,484,3.419,644,1.702,722,3.045,861,2.672,1246,9.098,1248,4.56]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[20,2.399,38,0.065,893,5.618]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[31,3.579,876,4.51,880,4.61,893,4.61,1249,5.953]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[20,2.815,38,0.077,75,1.603,76,1.614,79,2.826,115,0.381,175,3.488,188,4.243,354,2.513,536,5.692,606,4.074,645,3.011,893,7.453,1011,5.478]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[804,0.471]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[38,0.045,73,0.857,106,3.553,192,1.541,516,2.79,703,4.166,1074,3.244,1250,4.968]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[106,5.082,192,2.204,1251,7.72]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[38,0.069,74,1.173,75,1.943,76,1.956,115,0.461,121,1.243,122,2.504,375,1.819,1250,9.647]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[51,2.249,73,1.146,616,4.037,1252,6.265]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[776,5.14,1016,4.908,1252,6.11,1253,4.176]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[11,2.228,16,3.848,21,1.618,38,0.045,66,1.086,73,1.459,75,1.26,76,1.268,77,1.911,86,1.797,115,0.433,268,2.591,270,1.966,296,3.941,308,2.19,314,4.475,331,1.869,538,3.385,580,3.553,585,4.046,684,3.124,705,3.553,891,3.764,1054,4.306,1252,9.671]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[72,3.604,115,0.4,201,5.145,693,3.635]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[53,3.01,58,2.642,407,2.689,693,2.619,1254,4.515,1255,4.149,1256,4.787,1257,4.787]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[51,2.099,58,3.421,67,2.898,72,5.171,75,1.573,76,1.583,115,0.373,139,2.042,298,4.049,407,3.482,587,3.996,739,2.526,966,4.801,1000,4.601,1255,5.374,1257,6.199,1258,4.801,1259,6.199]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[73,0.915,121,0.861,122,1.733,128,1.035,256,4.017,693,2.901,955,4.017]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[407,3.639,693,3.545,1254,6.11,1260,5.018]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[21,1.422,23,2.108,33,2.244,38,0.039,72,3.55,73,1.129,75,1.108,76,1.67,79,2.604,93,2.081,115,0.59,125,1.365,203,2.715,268,2.278,269,2.891,355,3.022,374,2.852,407,2.453,619,1.981,645,2.081,693,4.292,739,1.779,1050,3.557,1067,3.557,1241,4.119,1258,6.075,1261,4.367,1262,4.744]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[73,0.981,266,4.139,267,3.873,607,5.12,693,3.111,1065,3.533]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[407,3.639,693,3.545,1254,6.11,1260,5.018]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[23,3.786,75,1.99,76,2.003,93,3.737,115,0.472,269,5.193,619,3.559,693,4.293,1263,8.521]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[38,0.055,111,1.621,375,1.455,684,3.853,806,5.31]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[375,1.538,806,5.616,807,6.479,1264,7.037]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[38,0.041,66,0.995,67,2.128,73,0.785,75,1.155,76,1.162,87,4.256,91,3.904,111,1.785,115,0.274,121,0.739,283,1.727,331,1.712,375,2.11,382,2.272,414,6.362,516,2.556,572,4.824,806,5.847,1035,4.192,1038,3.706,1265,4.943,1266,4.943,1267,4.943,1268,4.551]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[287,0.725,352,2.379,737,3.684,1269,5.778,1270,5.778]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[125,2.419,1074,3.596,1269,5.193,1270,5.193,1271,5.981]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[38,0.075,39,2.09,66,1.054,75,1.223,76,1.231,87,2.162,91,3.419,115,0.585,116,2.297,121,0.782,122,1.576,125,1.506,140,3.389,191,1.04,287,0.57,291,2.297,752,1.506,884,3.652,1269,9.166,1270,7.838,1272,5.236]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[99,2.226,131,3.291,722,3.478]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[99,1.571,191,0.757,193,1.42,375,1.216,722,2.456,856,3.88,1273,5.121]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[38,0.085,66,1.33,75,1.543,76,1.553,111,1.61,115,0.61,120,1.698,134,3.058,190,3.921,191,0.899,193,1.687,329,1.807,375,1.444,516,3.417,642,3.172,1274,6.608]],["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/",[74,0.76,82,2.098,89,1.054,287,0.588,352,1.929,737,2.987,1275,2.48,1276,2.79]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[39,2.809,89,1.374,1275,3.234,1276,3.639]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[38,0.061,39,2.91,75,1.703,76,1.714,82,2.834,89,1.879,115,0.533,121,1.089,122,2.194,140,4.719,884,5.084,1275,3.35,1276,4.976]],["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/",[38,0.06,115,0.4,219,3.836,636,4.397]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[191,0.814,193,1.526,636,3.645,637,3.596,1142,3.937,1143,5.506]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[11,3.139,75,1.776,76,1.787,115,0.421,191,1.034,198,4.922,199,5.196,219,4.043,290,2.956,354,2.783,636,6.028,762,5.422,1277,7]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[191,0.84,287,0.673,554,3.816,737,3.418,1278,5.684,1279,5.361]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[38,0.056,75,1.573,76,1.583,77,2.385,115,0.643,117,4.801,118,4.697,191,0.916,238,2.992,337,4.918,766,5.686,1275,3.095,1281,3.899]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[115,0.437,268,3.783,585,5.908]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[128,0.671,268,1.794,287,0.407,580,2.46,585,2.801,619,1.56,949,2.38,1282,3.736,1283,3.736,1284,3.736,1285,3.736,1286,3.736,1287,3.736,1288,1.949]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[16,3.848,21,1.618,38,0.045,51,1.682,74,0.76,75,1.26,76,1.268,79,1.649,87,2.228,115,0.299,121,0.806,128,0.969,211,2.869,268,3.751,269,6.511,270,1.966,287,0.588,340,3.244,418,3.553,441,3.244,516,2.79,585,7.548,645,2.367,1288,2.816,1289,5.396]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[66,1.242,74,0.87,196,2.762,214,3.533,710,4.63,722,2.726]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[165,3.301,196,2.488,710,4.171,714,4.295,1290,5.563,1291,5.563,1292,5.121]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[21,1.752,66,2.217,74,1.166,79,2.528,111,1.423,115,0.324,120,1.501,139,1.772,191,1.125,193,1.491,196,4.669,329,1.598,331,2.023,374,3.513,375,1.277,711,4.845,1293,5.379,1294,4.166]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[38,0.06,115,0.4,128,1.296,1295,6.265]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[128,1.074,1016,4.171,1295,5.193,1296,5.981,1297,4.772,1298,5.981]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[38,0.079,67,4.086,72,3.568,73,1.508,75,1.668,76,1.679,115,0.396,121,1.067,283,2.496,890,6.575,1295,9.258,1299,7.143]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[20,2.197,427,4.082,608,2.805,1300,6.642]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[79,1.492,188,3.017,731,3.895,1300,4.493,1301,4.238,1302,4.881,1303,4.493,1304,4.881,1305,4.881]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[75,1.703,76,1.714,115,0.404,121,1.089,122,2.194,283,2.547,602,6.45,731,5.817,933,4.506,1097,5.817,1303,6.711,1306,7.29,1307,6.711,1308,7.29,1309,7.29]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[38,0.051,89,1.206,196,2.762,287,0.673,437,3.035,1310,5.12]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[89,1.507,287,0.841,1311,6.401]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,3.139,38,0.082,75,1.776,76,1.787,81,3.897,89,2.147,115,0.421,290,2.956,984,3.897,1310,8.202]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[38,0.051,256,4.307,287,0.673,737,3.418,973,4.767,1312,6.175]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[287,0.652,637,3.596,973,4.617,975,5.506,976,5.506,977,5.506]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[32,1.129,38,0.076,39,1.509,52,2.243,54,2.446,66,1.2,73,1.451,75,0.883,76,0.888,79,1.823,82,1.469,102,1.774,106,2.488,111,0.921,115,0.209,116,1.658,139,1.809,238,3.284,268,1.814,283,2.084,291,1.658,297,2.188,308,2.421,331,1.309,383,3.282,606,3.54,645,1.658,690,3.134,718,2.488,933,2.336,973,7.848,979,3.479,980,3.479,982,3.479,983,3.016,1050,2.834,1313,3.78,1314,3.479,1315,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/",[89,1.206,121,0.923,122,1.858,287,0.673,737,3.418,1311,5.12]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[89,1.086,287,0.606,516,2.876,1172,3.729,1310,4.613,1311,6.622]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,2.678,38,0.054,57,1.96,81,3.324,89,1.982,115,0.36,121,0.969,195,2.397,196,3.978,282,1.78,290,3.458,357,1.585,382,2.981,616,3.629,984,3.324,1310,7.376,1311,5.379]],["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/",[38,0.048,89,1.124,128,1.035,219,3.062,739,2.16,1218,4.206,1316,4.446]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[89,1.262,850,4.118,1112,4.848,1316,4.992,1317,6.466]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[38,0.074,75,1.188,76,1.195,79,1.554,88,2.321,89,1.461,115,0.282,122,1.531,139,1.542,147,3.978,183,2.337,195,1.88,291,2.231,341,2.405,485,3.099,515,4.217,582,4.217,642,2.442,724,2.54,739,3.671,759,4.549,812,2.321,861,2.98,1114,3.926,1316,7.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[38,0.06,73,1.146,125,2.076,1318,6.642]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1319,9.576]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[38,0.047,86,1.883,99,1.598,115,0.448,120,1.453,126,2.715,128,1.016,192,1.615,244,3.2,282,1.552,287,0.616,299,4.033,349,4.033,482,5.207,491,3.661,516,2.924,797,4.911,984,2.899,1111,1.829,1288,2.951,1318,9.47,1320,4.513,1321,5.656,1322,3.945,1323,5.656,1324,0.833]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[73,1.146,74,1.017,262,1.758,1325,4.751]],["keywords//docs/security/using-fail2ban-for-security/",[1325,5.082,1326,7.72,1327,7.106]],["toc//docs/security/using-fail2ban-for-security/",[38,0.044,72,2.655,74,0.749,99,1.501,115,0.554,121,0.794,128,0.955,131,2.22,161,3.632,249,3.563,287,0.579,592,3.115,729,1.891,1077,4.407,1111,1.718,1322,3.707,1325,6.992,1327,4.893,1328,5.315,1329,5.315,1330,5.315,1331,5.315,1332,4.893,1333,7.728,1334,4.893,1335,4.615]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[73,0.915,263,2.926,287,0.627,352,2.059,737,3.188,1214,5.001,1336,5.302]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[287,0.606,773,3.88,776,4.063,1172,3.729,1209,4.295,1337,5.563,1338,5.563]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,2.89,38,0.058,73,1.488,75,1.635,76,1.646,115,0.388,263,5.364,666,2.091,943,5.805,1214,6.079,1336,9.718,1339,7.001,1340,7.001]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[38,0.051,89,1.206,116,2.708,128,1.109,256,4.307,1341,5.361]],["keywords//docs/development/version-control/install-gogs-on-debian/",[50,3.314,89,1.262,116,2.836,433,5.614,1341,5.614]],["toc//docs/development/version-control/install-gogs-on-debian/",[38,0.098,74,0.898,75,1.488,89,1.244,115,0.353,116,2.794,144,2.927,192,1.819,198,4.123,254,3.78,296,4.652,355,4.057,608,2.476,1050,4.776,1341,9.412]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[38,0.048,106,3.792,211,3.062,287,0.627,291,2.526,737,3.188,1342,3.792]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[287,0.389,1023,1.339,1172,2.392,1235,3.099,1342,2.35,1343,3.569,1344,2.238,1345,3.569,1346,3.569,1347,3.569,1348,3.569,1349,3.569,1350,3.569,1351,3.099,1352,3.569]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[20,1.695,21,1.669,38,0.078,66,1.608,73,0.884,86,1.853,115,0.309,121,1.194,122,1.675,147,2.96,240,4.174,283,1.945,290,2.164,427,5.287,644,2.078,739,3.506,759,2.853,1114,4.297,1293,5.124,1342,6.724]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[38,0.06,99,2.038,131,3.014,1353,5.27]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[99,1.165,856,2.876,1354,4.123,1355,4.123,1356,4.123,1357,3.58,1358,4.123,1359,4.123,1360,4.123,1361,4.123,1362,4.123,1363,4.123]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[5,2.536,11,2.13,23,2.293,38,0.091,75,1.205,76,1.213,81,3.876,93,2.263,99,1.457,115,0.419,238,2.293,268,2.477,270,1.88,277,2.168,291,2.263,422,2.477,580,3.397,606,3.062,1353,7.198,1364,5.16,1365,6.962,1366,4.279,1367,5.16,1368,5.16,1369,4.48]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[20,1.88,287,0.673,608,2.4,725,4.065,737,3.418,1097,4.927]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[287,0.652,649,4.617,725,3.937,891,4.171,1097,4.772,1370,5.981]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[38,0.063,64,5.006,150,5.097,602,5.097,608,3.845,725,6.513,752,2.187,753,3.707,1097,7.894,1241,6.602,1371,7.604]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[59,4.618,99,2.226,1054,6.288]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[20,1.194,51,1.222,99,1.107,188,2.423,262,0.955,268,1.882,580,2.581,1054,3.128,1111,1.267,1372,3.92,1373,3.92,1374,3.92,1375,3.92]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[21,1.781,38,0.049,86,1.978,115,0.537,121,0.888,261,3.221,268,2.852,269,3.62,297,3.44,382,2.73,441,3.572,512,4.144,580,3.912,962,5.158,1054,7.731,1066,3.572,1376,3.912,1377,5.941,1378,5.941,1379,5.941,1380,5.469,1381,5.941,1382,4.587]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[38,0.051,73,0.981,115,0.342,133,3.418,470,4.065,820,4.767]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1383,7.72,1384,7.72,1385,7.72]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[38,0.074,57,1.96,75,1.515,76,1.525,87,2.678,115,0.563,133,3.591,221,2.981,352,2.319,470,7.784,762,4.625,820,5.008,1386,5.972,1387,6.487]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[99,1.88,131,2.779,200,3.9,667,3.441,1225,5.138]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[190,3.301,191,0.757,375,1.216,667,2.876,1225,4.295,1229,4.83,1388,5.563]],["toc//docs/development/java/java-development-wildfly-centos-7/",[38,0.078,73,0.884,74,0.784,75,1.3,76,1.308,87,2.298,115,0.443,136,3.732,137,2.367,144,3.672,191,1.087,219,2.96,375,1.217,513,5.124,560,4.442,667,2.878,906,3.44,1225,7.215,1244,4.065,1389,5.567,1390,5.567,1391,5.567,1392,5.567,1393,5.567]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[38,0.065,115,0.437,710,5.908]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[712,7.106,713,6.703,714,5.96]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[38,0.061,75,1.155,76,1.162,87,3.986,115,0.535,121,0.739,130,7.73,132,4.145,133,4.832,196,3.277,211,2.628,283,1.727,342,3.525,580,3.255,612,2.211,710,8.096,724,2.469,739,1.854,759,2.533]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[89,1.409,115,0.4,295,4.93,481,5.145]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[89,1.262,278,3.996,295,4.418,481,4.61,672,3.23]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[19,2.947,58,2.1,67,3.369,72,2.065,75,0.965,79,1.956,113,2.198,125,1.189,144,1.899,153,3.805,244,2.338,245,3.191,295,4.372,297,2.393,299,2.947,344,3.805,348,6.246,478,3.589,484,3.099,645,3.433,673,2.031,802,3.019,968,3.589,1047,3.019,1394,3.589,1395,4.013,1396,4.133,1397,2.453,1398,4.133,1399,3.589,1400,4.133,1401,4.133,1402,4.133,1403,3.805,1404,3.805,1405,4.133,1406,3.427,1407,3.805,1408,4.133,1409,3.805,1410,3.805,1411,4.133,1412,4.133,1413,3.805]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[73,0.981,121,0.923,122,1.858,640,4.51,1414,5.361,1415,4.927]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[640,3.565,1253,2.897,1414,4.238,1415,3.895,1416,4.881,1417,4.881,1418,4.881,1419,4.881,1420,4.881]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[20,2.208,32,1.456,38,0.06,67,2.098,73,1.375,115,0.48,121,1.083,122,2.183,132,2.758,181,3.764,268,3.481,331,1.688,666,1.456,679,3.89,752,1.402,753,2.377,984,2.498,1253,2.893,1414,8.9,1415,5.787,1421,4.875,1422,4.875,1423,6.013,1424,6.296]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[38,0.055,331,2.304,543,5.31,697,5.518,1425,6.126]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[697,4.311,1426,7.605,1427,5.2,1428,5.2,1429,5.2,1430,5.2,1431,5.2]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[38,0.06,54,4.646,66,0.968,73,0.764,74,0.678,77,1.703,79,1.47,93,2.109,100,4.175,115,0.476,134,2.225,167,3.429,192,1.373,214,2.752,230,3.837,282,1.97,283,1.68,287,0.524,331,2.486,616,2.69,666,1.436,697,8.45,762,3.429,1210,3.712,1425,7.906,1432,4.809,1433,4.809,1434,4.809,1435,4.175]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[115,0.437,644,2.941,1131,5.282]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[20,1.583,38,0.043,115,0.288,453,4.149,593,3.486,644,1.941,739,1.95,1131,3.486]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[38,0.058,73,1.488,75,1.635,76,1.646,89,1.367,115,0.519,183,3.217,191,0.952,192,2.675,485,4.266,644,2.613,708,5.805,739,2.626,753,3.414,1131,4.693]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[20,2.026,74,0.938,332,4.307,916,5.518,1436,5.31]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[332,4.555,891,4.908,916,5.835,1436,5.616]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[20,2.726,34,6.713,270,3.262,420,5.009,608,3.48,916,9.094]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[38,0.06,99,2.038,131,3.014,375,1.577]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[51,1.355,99,1.228,111,1.059,188,2.687,190,2.58,375,0.95,1437,2.863,1438,3.47,1439,3.47,1440,3.605,1441,3.1]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[28,3.071,38,0.051,66,1.725,73,0.977,74,0.866,75,1.436,76,1.445,111,1.498,140,3.979,278,3.8,283,2.148,375,2.541,913,4.048,917,3.8,918,4.557,919,2.768,955,4.288,1035,3.518]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[38,0.06,99,2.038,131,3.014,190,4.282]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[51,1.355,99,1.228,111,1.059,188,2.687,190,2.58,375,0.95,1438,3.47,1441,3.1,1442,4.348,1443,4.348,1444,4.348]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[11,2.495,28,3.019,38,0.05,66,1.704,73,0.96,74,0.852,75,1.411,76,1.42,111,1.472,140,3.911,190,6.863,278,3.735,283,2.111,913,3.978,917,3.735,918,4.503,919,2.721,955,4.215,1035,3.458]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[125,2.076,282,1.98,645,3.165,1445,4.129]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[262,1.575,645,3.893,1445,3.7,1446,4.61]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[38,0.044,51,1.657,79,1.625,99,1.501,102,2.495,115,0.295,128,0.955,131,2.22,166,3.115,267,3.334,287,0.579,331,3.153,384,3.285,645,2.331,729,1.891,891,3.707,1111,1.718,1288,2.773,1445,6.704,1447,5.315,1448,4.615,1449,9.105,1450,4.242]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[73,0.981,191,0.84,192,1.763,287,0.673,737,3.418,1156,3.035]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[144,2.748,191,0.814,287,0.652,672,2.988,1172,4.009,1451,5.981]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[38,0.082,68,4.61,75,1.436,76,1.445,115,0.475,120,1.58,191,1.343,196,4.775,244,3.478,277,2.583,308,3.479,329,1.681,422,2.952,1452,4.288,1453,5.338,1454,4.746]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[21,1.727,73,0.915,287,0.627,407,2.978,707,3.56,737,3.188,1455,5.001]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[287,0.704,407,3.343,1172,4.335,1455,5.614,1456,6.466]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[38,0.073,67,3.758,73,1.387,75,2.039,76,2.053,115,0.484,1455,9.377]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[20,2.197,38,0.06,73,1.146,1457,6.265]],["keywords//docs/game-servers/install-teamspeak/",[1209,5.433,1457,6.11,1458,7.037,1459,5.433]],["toc//docs/game-servers/install-teamspeak/",[11,2.89,38,0.058,75,1.635,76,1.646,115,0.388,254,4.155,268,3.361,290,2.721,320,5.587,331,2.424,432,4.609,577,4.992,1457,10.202,1460,7.001]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[20,2.026,115,0.369,136,4.461,444,2.346,1461,6.126]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[611,5.16,1462,6.466,1463,5.953,1464,5.614,1465,6.466]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[121,1.489,136,6.679,444,3.513]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[38,0.051,73,0.981,89,1.206,128,1.109,192,1.763,219,3.283]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[89,1.168,128,1.074,144,2.748,672,2.988,850,3.809,851,5.193]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[38,0.069,57,2.514,75,1.943,76,1.956,89,2.046,128,1.495,221,4.816,291,3.649]],["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/",[74,0.812,115,0.319,214,3.296,470,3.792,722,2.542,820,4.446,1466,4.596]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[51,1.734,191,0.757,193,1.42,375,1.216,470,3.662,850,3.543,1467,5.121]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[66,2.173,79,2.669,115,0.484,120,2.244,329,2.388,722,3.854,1466,6.968]],["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/",[66,1.021,74,0.715,214,2.905,470,4.92,722,2.241,820,3.919,1325,3.342,1466,4.051]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[191,0.664,193,1.246,375,1.067,470,3.214,850,3.109,1325,3.214,1467,4.493,1468,3.895,1469,4.881]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[66,2.048,79,2.429,88,3.626,115,0.44,133,4.398,470,6.7,504,6.341,820,6.135,1466,6.341,1470,7.946]],["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/",[73,0.981,128,1.109,191,0.84,192,1.763,219,3.283,1218,4.51]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[128,0.934,191,0.707,646,4.787,647,4.149,672,2.597,1471,5.2,1472,4.149,1473,5.2]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[38,0.081,68,4.531,75,1.411,76,1.42,115,0.469,120,1.553,191,1.442,196,4.739,244,3.419,277,2.539,308,3.437,329,1.653,422,2.901,1452,4.215,1453,5.247,1454,4.665]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[128,1.296,219,3.836,722,3.185,1218,5.27]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[128,0.741,191,0.561,193,1.052,233,2.095,375,0.901,722,1.82,850,2.626,1474,4.123,1475,4.123,1476,3.419,1477,3.795,1478,4.123]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[38,0.077,75,1.603,76,1.614,111,1.672,115,0.512,120,1.764,121,1.026,122,2.066,134,3.177,191,1.258,193,1.752,329,1.877,375,2.285,642,3.296]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[5,3.546,33,3.412,34,5.41,331,2.499]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[5,2.939,816,4.264,876,4.171,881,3.505,1479,5.506,1480,5.506]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[5,4.188,33,5.031,38,0.071,115,0.472,327,5.943,881,4.994,1481,6.8,1482,7.844]],["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/",[5,3.035,20,1.88,33,2.92,34,4.63,331,2.138,876,4.307]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[5,2.734,816,3.966,847,4.613,876,3.88,881,3.26,1479,5.121,1480,5.121]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[5,3.021,33,4.667,38,0.051,51,1.917,99,2.421,115,0.341,128,1.54,131,2.568,287,0.934,327,4.288,438,3.856,881,3.603,1111,2.771,1288,4.473,1481,4.906,1482,5.66,1483,5.298]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[89,1.299,128,1.195,256,4.641,412,3.472,1168,3.538]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[89,1.086,128,0.999,412,2.903,1169,3.344,1484,3.88,1485,3.438,1486,5.121]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[11,2.583,23,2.78,38,0.089,75,1.461,76,1.471,89,1.694,93,2.744,119,3.622,238,2.78,270,2.279,277,2.629,352,2.237,375,1.368,412,3.265,422,4.166,670,4.909,1168,4.613]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.026,21,1.995,74,0.938,203,3.808,1487,5.778]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,1.4,21,1.379,64,3.028,165,2.729,191,0.626,200,2.695,412,2.4,634,3.993,1487,3.993,1488,4.234]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.09,38,0.077,73,1.091,79,2.098,115,0.512,121,1.026,122,2.066,191,0.934,387,4.023,474,3.841,606,4.074,666,2.05,731,5.478,1487,8.027,1488,6.32,1489,5.961]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[876,6.053,1490,7.196]],["keywords//docs/platform/kvm-reference/",[876,4.51,1491,6.466,1492,6.466,1493,6.466,1494,5.614]],["toc//docs/platform/kvm-reference/",[5,3.075,31,3.463,51,1.95,99,1.767,115,0.347,175,3.179,178,3.924,201,4.461,270,2.279,309,4.364,329,1.711,393,3.985,542,3.924,606,3.713,753,3.051,842,5.433,876,4.364,891,4.364,991,2.629,1288,3.265,1382,4.83,1494,5.433,1495,6.257,1496,4.691]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[38,0.06,128,1.296,219,3.836,375,1.577]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[51,1.285,111,1.004,128,0.741,188,2.548,190,2.447,375,0.901,850,2.626,1437,2.714,1438,3.29,1439,3.29,1440,3.419,1441,2.94]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[28,3.071,38,0.051,66,1.725,73,0.977,74,0.866,75,1.436,76,1.445,111,1.498,140,3.979,278,3.8,283,2.148,375,2.541,913,4.048,917,3.8,918,4.557,919,2.768,955,4.288,1035,3.518]],["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/",[38,0.048,89,1.124,115,0.319,193,1.47,287,0.627,437,2.831,1140,2.216]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[89,1.374,193,1.796,857,5.276,1140,2.707]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[38,0.056,57,2.035,75,1.573,76,1.583,89,1.782,115,0.373,120,1.73,139,2.042,193,2.642,195,2.489,244,3.81,262,1.641,304,6.199,329,1.842,572,4.434,1140,2.59,1497,4.223]],["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/",[89,1.299,193,1.698,287,0.725,737,3.684,1140,2.56]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[89,1.086,193,1.42,287,0.606,1140,2.14,1498,5.563,1499,3.26,1500,3.729]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,2.453,38,0.049,57,1.795,61,5.51,66,1.195,86,1.978,102,2.789,113,4.449,115,0.537,120,1.527,121,0.888,139,1.802,193,1.516,195,2.196,262,1.447,270,2.164,329,1.625,357,1.452,572,3.912,1140,2.285,1395,3.726,1497,3.726,1501,3.672]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1133,5.908,1502,7.254,1503,5.618]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[165,2.897,714,3.768,1292,4.493,1503,3.48,1504,4.881,1505,4.493,1506,4.881,1507,3.768,1508,4.493]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[71,5.972,72,3.24,73,1.03,79,1.983,132,3.67,203,3.712,331,2.246,438,4.068,475,3.9,598,5.632,716,4.625,1078,5.379,1503,7.239,1507,5.008,1509,6.487,1510,5.632,1511,6.487,1512,6.487,1513,6.487,1514,5.972]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[66,1.452,762,5.145,1503,5.145,1507,5.571]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[165,3.086,714,4.014,722,2.295,1468,4.149,1503,3.707,1507,4.014,1508,4.787,1515,5.2]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[38,0.053,66,1.768,115,0.487,120,1.637,121,0.952,122,1.917,168,3.937,191,1.195,193,1.626,270,2.32,290,2.476,329,1.742,375,2.369,919,2.868,1507,4.918,1514,5.864,1516,6.37]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[38,0.051,73,0.981,287,0.673,737,3.418,1078,5.12,1503,4.403]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[713,4.238,714,3.768,1183,3.768,1503,3.48,1505,4.493,1517,4.881,1518,4.881,1519,4.881,1520,4.493]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[38,0.049,52,3.526,66,1.195,73,1.329,87,3.455,121,0.888,122,1.788,132,3.361,183,2.73,277,2.496,283,2.076,290,2.309,426,2.81,473,5.158,485,3.62,666,1.774,724,2.968,928,4.741,1078,6.939,1503,5.967,1507,4.587,1520,5.469,1521,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/",[38,0.048,51,1.795,73,0.915,262,1.403,608,2.239,693,2.901,859,3.668]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[99,1.571,128,0.999,287,0.606,407,2.876,619,2.323,693,2.802,1111,1.798]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[21,1.91,38,0.073,51,1.986,53,3.688,58,3.236,72,4.388,73,1.012,115,0.353,121,0.952,283,2.226,298,3.83,479,4.123,608,2.476,693,5.729,752,1.832,1522,6.37,1523,6.37]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[20,2.197,1395,4.525,1524,5.145,1525,5.27]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[262,1.575,268,3.104,1526,6.466,1527,6.466,1528,5.614]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[74,1.27,113,3.513,211,3.513,382,3.037,512,4.609,645,2.898,936,6.083,962,5.738,1395,6.429,1525,7.486,1529,6.083,1530,6.608,1531,6.608,1532,6.083,1533,6.608,1534,5.738]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[128,1.296,219,3.836,1001,3.491,1218,5.27]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[128,1.264,1001,3.405,1218,5.14,1535,4.231]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[5,3.31,11,2.78,20,2.05,32,2.011,38,0.056,86,2.242,122,2.027,128,1.21,154,4.162,219,3.58,317,4.801,354,2.465,476,4.289,538,4.223,705,4.434,753,3.283,984,3.451,1001,4.415,1536,5.847]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[73,0.915,287,0.627,331,1.994,737,3.188,1253,3.418,1415,4.596,1537,5.759]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1253,5.073,1415,6.821]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,3.139,31,4.209,38,0.063,66,1.53,73,1.208,115,0.421,283,2.657,354,2.783,387,4.456,533,7,606,4.512,1253,4.512,1538,9.892]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[38,0.045,73,0.857,287,0.588,737,2.987,1016,3.764,1049,4.686,1539,5.396,1540,4.968]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[287,0.532,773,3.404,1016,3.404,1119,3.768,1172,3.272,1209,3.768,1231,4.493,1541,4.881,1542,4.881]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,2.78,38,0.056,73,1.45,75,1.573,76,1.583,115,0.373,279,3.546,666,2.011,943,5.584,1049,8.987,1119,5.199,1540,9.528,1543,6.734,1544,9.125]],["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/",[5,2.652,31,2.987,128,0.969,287,0.588,516,2.79,812,2.463,881,3.162,1545,3.848]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[128,0.934,287,0.566,813,4.014,814,4.014,815,3.899,816,3.707,1546,4.149,1547,4.149]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[5,5.63,38,0.061,81,3.736,115,0.533,282,2.001,290,2.834,291,3.197,354,2.668,418,4.8,812,3.327,881,4.272,1545,5.198]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[804,0.471]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[74,0.938,497,3.723,652,4.745,680,5.138,1548,6.655]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[128,1.162,287,0.704,497,3.618,652,4.61,680,4.992]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[28,1.995,38,0.086,66,0.803,79,1.221,86,1.329,91,2.786,115,0.52,122,1.202,139,1.889,152,2.37,154,2.468,182,2.916,277,1.678,283,2.176,290,1.552,297,2.312,387,3.65,393,2.543,427,2.259,477,3.083,592,2.34,652,5.46,666,1.193,667,2.065,680,7.672,743,3.676,1040,2.729,1050,2.994,1549,6.229,1550,3.993,1551,8.65]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[73,1.146,128,1.296,131,3.014,1552,6.265]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[128,1.387,1253,4.581,1552,6.703]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[38,0.088,67,3.668,73,1.69,331,2.951,387,4.994,666,2.545,1552,7.399]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[44,2.762,318,2.625,643,5.12,1490,5.12,1553,6.175,1554,6.175]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[44,3.147,318,2.992,1555,7.037,1556,7.037]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[44,3.721,46,5.682,335,1.186,382,3.824,420,6.418,633,7.66,728,7.66]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[99,1.744,131,2.579,190,3.664,729,2.197,1023,2.316,1557,3.252]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[729,2.301,856,4.51,1558,6.466,1559,6.466,1560,4.61]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[38,0.048,57,1.737,115,0.527,121,1.221,122,2.46,139,2.886,190,4.851,195,2.124,283,2.856,329,1.572,341,3.866,382,2.641,645,2.521,730,2.429,984,2.946,1023,3.066,1557,3.027,1561,3.503,1562,4.198]],["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/",[99,1.744,375,1.35,729,2.197,991,2.594,1023,2.316,1557,3.252]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[729,2.301,993,5.16,1560,4.61,1563,6.466,1564,6.466]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[38,0.048,57,1.737,115,0.527,121,1.221,122,2.46,139,2.886,195,2.124,283,2.856,329,1.572,341,3.866,375,1.787,382,2.641,645,2.521,730,2.429,984,2.946,1023,3.066,1557,3.027,1561,3.503,1562,4.198]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[44,2.762,73,0.981,114,4.307,192,1.763,352,2.207,777,5.12]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[44,2.325,46,2.819,114,3.627,128,0.934,132,2.942,287,0.566,672,2.597,1565,4.787]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[38,0.065,44,4.969,46,4.214,73,1.594,114,6.997,192,2.219,290,3.021,331,2.691,420,4.348]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[128,1.195,263,3.381,287,0.725,1566,5.138,1567,6.126]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[128,1.162,287,0.704,776,4.722,1568,6.466,1569,6.466]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[38,0.051,73,0.977,74,0.866,75,1.436,76,1.445,115,0.341,173,4.746,263,5.014,308,2.495,318,2.614,666,1.836,1050,4.61,1191,5.66,1211,7.891,1243,3.518,1566,7.619,1567,9.085,1570,5.66]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[74,0.938,295,4.547,375,1.455,481,4.745,1441,4.745]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[375,1.538,1441,5.018,1571,7.037,1572,6.479]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[278,4.803,295,5.31,375,2.193,884,5.42,922,6.747,1441,5.541,1573,7.771,1574,7.771,1575,7.771,1576,7.771,1577,7.771,1578,7.771]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[27,5.755,1013,7.254,1133,5.908]],["keywords//docs/uptime/reboot-survival-guide/",[27,5.14,1579,7.037,1580,7.037,1581,7.037]],["toc//docs/uptime/reboot-survival-guide/",[27,6.04,79,1.786,86,1.945,99,2.336,110,4.166,111,1.423,122,2.489,128,1.05,131,2.44,139,1.772,154,5.112,156,3.269,259,4.075,268,2.805,269,3.561,287,0.637,452,4.381,572,3.847,644,2.181,778,5.073,991,2.455,1582,5.843,1583,5.843,1584,5.843]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[73,1.252,191,1.072,278,4.87]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[115,0.39,191,0.957,672,3.516,1572,6.479]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[68,5.147,191,0.934,196,4.135,244,3.884,348,5.478,797,5.961,884,4.788,1452,4.788,1453,5.961,1585,6.32,1586,6.865,1587,6.865,1588,6.865,1589,6.865,1590,6.865,1591,6.865,1592,6.865,1593,6.865]],["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/",[38,0.055,44,2.976,214,3.808,352,2.379,722,2.937]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[44,2.892,128,1.162,287,0.704,722,3.918]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[38,0.08,44,4.817,46,3.953,115,0.404,121,1.089,191,0.992,290,2.834,331,2.524,375,1.593,420,4.079,609,4.572,666,2.177,722,3.218]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[804,0.471]],["title//docs/uptime/monitoring/top-htop-iotop/",[73,1.057,74,0.938,125,1.914,481,4.745,504,5.31]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[125,1.86,504,5.16,1594,5.614,1595,5.953,1596,5.16]],["toc//docs/uptime/monitoring/top-htop-iotop/",[88,3.547,231,5.827,277,3.265,318,4.724,339,4.672,504,6.201,704,7.154,705,5.116,1529,7.154,1594,6.747,1595,7.154]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[73,1.057,139,2.018,192,1.9,259,4.641,1597,5.778]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1597,6.703,1598,7.72,1599,7.72]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[66,1.599,79,2.429,115,0.564,230,6.341,290,3.089,318,4.327,331,2.751,338,4.6,1597,8.836]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[121,0.861,122,1.733,128,1.035,190,3.418,271,2.526,287,0.627,1057,4.596]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[128,0.934,190,3.086,271,2.28,287,0.566,375,1.136,454,3.899,1057,4.149,1600,4.787]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[38,0.069,57,2.514,111,2.027,115,0.461,121,1.243,139,2.524,195,3.075,268,3.995,1044,4.655,1057,6.64]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[11,3.253,432,5.188,1131,5.282]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[453,7.455,454,4.171,1131,5.353,1600,5.121]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[88,3.47,115,0.421,120,1.954,149,5.422,329,2.08,539,6.602,600,6.305,641,4.043,852,5.553,1131,7.37,1601,4.7,1602,7.604]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[38,0.055,50,3.411,221,3.058,863,5.518,1053,4.86]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[50,3.065,863,4.959,1603,5.193,1604,4.772,1605,4.772,1606,4.959]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[38,0.052,50,3.207,66,1.746,115,0.347,139,2.632,147,3.327,221,2.875,402,5.188,427,3.54,727,5.76,863,7.195,1053,6.337,1510,8.649,1607,8.677,1608,6.257,1609,6.257,1610,6.257]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[38,0.055,115,0.369,128,1.195,131,2.779,518,5.518]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[1611,8.548,1612,8.548]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[28,3.819,31,2.898,38,0.044,79,2.759,102,3.589,115,0.424,121,0.782,125,1.506,161,3.578,269,3.191,290,2.035,309,3.652,416,6.923,491,3.389,518,8.753,570,4.821,666,1.564,729,1.863,802,3.824,861,3.069,1322,3.652,1407,4.821,1613,4.821]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[38,0.06,128,1.296,1253,4.282,1614,6.265]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[128,0.877,850,3.109,851,4.238,1218,3.565,1253,2.897,1535,2.934,1614,4.238,1615,4.238,1616,3.404]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[11,3.208,21,2.33,38,0.083,73,1.234,75,1.815,76,1.827,115,0.431,268,3.731,666,2.321,752,2.236,1253,4.612,1614,6.747]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[38,0.065,128,1.416,1617,6.083]],["keywords//docs/game-servers/multicraft-on-debian/",[128,1.387,1253,4.581,1617,5.96]],["toc//docs/game-servers/multicraft-on-debian/",[38,0.09,115,0.484,426,4.13,666,2.608,707,5.397,1253,5.182,1617,6.741]],["deprecated//docs/game-servers/multicraft-on-debian/",[804,0.471]],["title//docs/game-servers/multicraft-on-ubuntu/",[38,0.065,287,0.858,1617,6.083]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[287,0.841,1253,4.581,1617,5.96]],["toc//docs/game-servers/multicraft-on-ubuntu/",[38,0.09,115,0.484,426,4.13,666,2.608,707,5.397,1253,5.182,1617,6.741]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[20,1.459,38,0.04,73,0.761,128,0.861,267,3.006,287,0.522,870,3.5,1072,4.161,1618,4.161,1619,4.412]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1618,6.703,1619,7.106,1620,7.72]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[38,0.074,74,1.262,115,0.496,282,2.457,354,3.277,1618,9.522]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[233,4.003,725,5.188,1074,4.737]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[303,4.185,1074,5.336,1621,5.953,1622,3.94]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[87,4.263,122,2.447,193,2.075,267,6.476,725,5.352,759,4.166,1074,4.887,1565,7.483,1623,5.352]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[497,4.409,725,5.188,1074,4.737]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[303,3.871,497,3.346,1074,5.055,1621,5.506,1622,3.645]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[87,3.719,122,1.989,228,5.479,267,5.65,387,3.873,725,7.585,759,3.387,1074,6.926,1175,5.738,1179,5.102,1624,6.608]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[4,5.41,685,5.758,1001,3.491,1625,6.642]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[17,3.565,99,1.379,128,0.877,262,1.189,287,0.532,685,3.895,831,3.66,1001,2.361,1111,1.578]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[35,5.847,38,0.076,52,3.996,99,2.578,128,1.639,131,2.812,139,2.042,287,0.994,984,3.451,991,2.829,1001,3.258,1111,2.177,1244,4.918,1625,6.199,1626,6.734,1627,6.734]],["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/",[73,0.981,121,0.923,122,1.858,128,1.109,287,0.673,1253,3.664]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[128,1.387,287,0.841,1253,4.581]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[38,0.073,67,3.758,73,1.387,331,3.024,666,2.608,1253,6.958]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[287,0.858,722,3.478,737,4.362]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[191,0.707,193,1.327,375,1.136,1172,3.486,1628,4.787,1629,5.2,1630,5.2,1631,4.014]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[38,0.081,66,1.498,75,1.739,76,1.75,111,1.813,115,0.603,120,1.913,191,1.013,193,1.9,329,2.036,375,2.132]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[99,2.038,131,3.014,1454,5.571,1632,7.216]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[99,2.18,856,5.384,1633,7.72]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[27,4.413,32,1.805,38,0.05,73,1.553,74,0.852,75,1.411,76,1.42,79,1.847,115,0.335,254,3.586,308,3.437,536,5.011,666,1.805,1050,6.35,1454,7.548,1634,9.777,1635,6.043,1636,6.043]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[109,5.496,115,0.437,444,2.778]],["keywords//docs/networking/dns/common-dns-configurations/",[1464,6.703,1637,7.106,1638,7.106]],["toc//docs/networking/dns/common-dns-configurations/",[73,1.362,74,1.208,86,2.047,104,4.432,115,0.341,120,1.58,121,0.919,122,1.85,160,3.979,164,4.288,341,4.667,443,3.747,444,2.168,445,4.61,729,2.188,730,2.598,1534,5.338,1639,5.66,1640,4.906,1641,4.906]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[38,0.06,89,1.409,114,5.033,128,1.296]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[128,0.877,233,2.48,1642,3.895,1643,4.238,1644,4.881,1645,4.881,1646,4.238,1647,4.881,1648,4.881]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[38,0.08,66,1.936,73,1.158,79,2.941,89,1.423,102,3.423,114,5.084,115,0.404,192,2.082,249,4.887,321,6.711,1649,6.711,1650,7.29]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[38,0.051,51,1.925,260,4.927,619,2.579,1651,5.361,1652,5.361]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[260,5.616,619,2.939,883,5.616,1651,6.11]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[38,0.054,51,2.022,72,4.444,73,1.413,74,0.914,128,1.165,139,1.967,277,2.725,287,0.707,1244,6.496,1288,3.385,1395,4.068,1483,4.009,1651,7.724,1653,6.487,1654,5.379,1655,5.972,1656,6.487]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[120,1.854,476,4.596,497,4.037,1056,5.27]],["keywords//docs/websites/cms/high-availability-wordpress/",[375,1.413,454,4.848,497,3.618,1044,3.618,1657,5.953]],["toc//docs/websites/cms/high-availability-wordpress/",[38,0.068,57,1.737,66,1.156,111,1.4,115,0.607,121,0.859,122,1.73,133,4.525,191,0.782,195,2.124,211,3.056,283,2.008,497,3.216,666,1.717,752,1.653,1044,5.323,1131,3.853,1489,4.991,1658,4.309,1659,4.991,1660,5.748]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[111,1.504,115,0.342,133,4.759,375,1.35,1044,3.455]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[454,5.276,1044,3.937,1657,6.479,1661,7.037]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[38,0.062,66,1.498,111,1.813,115,0.541,133,5.4,211,3.958,283,2.601,375,2.132,1044,6.089,1658,5.581]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[38,0.072,114,6.053]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[233,3.575,1642,5.616,1643,6.11,1662,6.11]],["toc//docs/development/nodejs/how-to-install-nodejs/",[21,3.165,38,0.058,52,4.155,57,2.83,81,3.588,132,5.299,291,3.071,508,6.079,577,4.992,643,5.805,690,5.805,1663,7.001,1664,7.001,1665,7.001]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[38,0.051,99,1.744,131,2.579,214,3.533,1140,2.375,1149,3.137]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[51,1.734,89,1.086,99,1.571,193,1.42,1140,2.14,1149,2.826,1666,2.612]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[11,2.63,38,0.073,86,2.121,89,2.116,115,0.557,120,1.637,121,0.952,190,3.78,193,2.242,296,4.652,329,1.742,352,2.277,357,1.557,1140,3.379,1667,4.776]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[619,3.624,896,6.925]],["keywords//docs/platform/network-helper/",[516,2.876,592,3.26,611,4.439,619,3.335,1668,5.563,1669,5.563]],["toc//docs/platform/network-helper/",[35,5.338,79,1.879,99,1.737,115,0.341,121,0.919,128,1.104,240,4.61,287,0.67,331,2.129,416,4.288,479,3.979,619,3.58,896,6.84,1111,1.988,1244,6.26,1288,3.208,1386,5.66,1410,5.66,1483,3.8,1654,5.098,1670,5.338,1671,6.148]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[128,0.969,131,2.254,156,3.019,196,2.413,516,2.79,636,3.289,1179,4.166,1672,4.306]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[128,0.934,497,2.909,636,3.169,637,3.126,638,3.797,1142,3.423,1672,4.149,1673,4.787]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[20,2.175,23,3.173,38,0.079,93,3.133,156,5.312,165,4.239,196,3.194,498,3.797,636,4.353,666,2.133,1179,5.514,1672,9.068]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[38,0.048,74,0.812,128,1.035,131,2.405,516,2.978,636,3.51,1672,4.596]],["keywords//docs/websites/cms/drush-drupal/",[128,0.934,497,2.909,516,2.689,636,3.169,637,3.126,638,3.797,1142,3.423,1673,4.787]],["toc//docs/websites/cms/drush-drupal/",[38,0.077,48,4.109,50,2.809,66,1.103,73,1.255,74,0.772,79,1.675,88,2.501,121,0.819,233,2.784,262,1.335,277,2.302,283,2.76,498,2.914,636,3.34,666,1.637,802,4.002,933,4.883,983,6.305,1244,4.002,1452,3.822,1672,8.091,1674,5.48]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[99,1.88,131,2.779,191,0.905,644,2.484,739,2.496]],["keywords//docs/security/ssl/ssl-apache2-centos/",[191,0.707,644,1.941,1111,1.681,1675,3.553,1676,4.787,1677,4.515,1678,5.2,1679,3.423]],["toc//docs/security/ssl/ssl-apache2-centos/",[74,1.201,75,1.99,76,2.003,115,0.59,139,2.584,191,1.159,644,3.18,739,3.196]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[128,1.109,191,0.84,287,0.673,516,3.193,644,2.305,739,2.316]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[128,0.934,191,0.707,287,0.566,644,1.941,672,2.597,1675,3.553,1680,4.787,1681,4.787]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[74,1.201,75,1.99,76,2.003,115,0.59,139,2.584,191,1.159,644,3.18,739,3.196]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[287,0.786,737,3.994,1001,3.491,1156,3.546]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[287,0.841,1001,3.735,1172,5.175]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[5,3.31,20,2.05,32,2.011,38,0.056,86,2.242,122,2.027,154,4.162,287,0.994,354,2.465,476,4.289,538,4.223,945,5.584,984,3.451,1001,5.007,1156,3.31,1157,5.584,1682,2.898]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[804,0.471]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[38,0.048,89,1.124,128,1.035,131,2.405,739,2.16,1316,4.446,1535,3.463]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[89,0.898,1112,3.448,1114,3.551,1316,3.551,1535,2.765,1616,3.208,1646,3.993,1683,4.599,1684,4.234,1685,3.814]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[20,1.526,38,0.062,57,1.515,79,1.532,87,2.07,88,2.288,89,1.445,122,1.509,128,0.901,139,1.521,147,3.936,183,2.304,195,1.853,221,2.304,291,2.199,341,2.371,485,3.055,515,4.157,582,4.157,642,2.407,666,1.497,724,2.504,739,3.646,759,4.511,861,2.938,1114,3.87,1316,7.505]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[996,3.837]],["title//docs/websites/cms/cms-overview/",[21,2.163,282,1.98,673,3.546,852,5.27]],["keywords//docs/websites/cms/cms-overview/",[497,3.112,516,2.876,636,3.39,637,3.344,638,4.063,1142,3.662,1686,5.121]],["toc//docs/websites/cms/cms-overview/",[20,2.315,21,2.28,23,3.378,93,3.335,282,2.087,497,5.535,598,6.602,636,6.028,638,7.224,673,3.737,1179,5.87]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[355,5.019,1687,6.842,1688,7.254]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[17,3.797,99,1.469,128,0.934,262,1.267,287,0.566,1111,1.681,1687,4.515,1688,4.787]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[89,1.394,139,2.166,191,1.292,355,6.046,451,5.514,693,3.598,1023,2.679,1026,5.216,1557,3.762,1687,9.258,1689,7.143,1690,6.575,1691,7.143]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[79,2.408,1000,5.384,1692,6.083]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1692,4.617,1693,4.772,1694,5.506,1695,4.617,1696,5.506,1697,5.506]],["toc//docs/tools-reference/file-transfer/filezilla/",[38,0.078,74,1.329,666,2.817,1692,8.738]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[38,0.048,196,2.576,287,0.627,426,2.724,437,2.831,707,3.56,1698,5.001]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[426,3.328,707,4.349,1698,6.11,1699,7.037]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[21,1.752,38,0.08,75,1.365,76,1.373,79,1.786,115,0.324,181,4.511,196,4.294,357,1.428,426,2.763,612,2.613,645,2.563,707,3.611,984,2.994,1244,4.267,1640,4.663,1641,4.663,1698,9.932,1700,4.845]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[38,0.048,73,0.915,106,3.792,287,0.627,291,2.526,730,2.434,1701,5.001]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[729,2.747,730,3.263,1701,6.703]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[38,0.045,73,0.857,87,2.228,124,4.9,139,1.637,191,0.734,279,2.842,283,1.886,327,3.764,331,1.869,343,3.764,443,3.289,666,1.612,730,2.281,739,2.931,913,3.553,939,4.046,1233,7.09,1234,7.329,1461,8.455,1701,4.686,1702,4.475,1703,5.396,1704,5.396,1705,5.396]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[4,5.41,831,5.41,1001,3.491,1706,6.642]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[17,3.565,99,1.379,128,0.877,262,1.189,287,0.532,831,3.66,1001,2.361,1111,1.578,1706,4.493]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[4,3.759,38,0.042,51,1.563,99,1.416,128,0.901,287,0.546,831,7.775,984,2.569,1001,2.425,1111,1.621,1288,2.616,1483,3.098,1654,4.157,1670,4.353,1707,10.37,1708,10.37,1709,5.013,1710,5.013,1711,5.013,1712,5.013,1713,5.013,1714,5.013,1715,5.013,1716,5.013,1717,5.013,1718,5.013]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[20,2.642,420,4.855]],["keywords//docs/platform/linode-images/",[420,4.783,1719,8.548]],["toc//docs/platform/linode-images/",[21,2.684,352,3.201,420,6.634,1450,7.145,1720,8.953]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[89,1.206,128,1.109,131,2.579,375,1.35,1535,3.712,1721,5.361]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[89,1.374,375,1.538,1616,4.908,1721,6.11]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[38,0.08,57,2.203,74,1.027,89,1.879,115,0.404,195,2.694,352,2.606,354,2.668,375,1.593,382,3.35,666,2.177,1721,9.352]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[38,0.051,287,0.673,737,3.418,1182,4.767,1278,5.684,1279,5.361]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[50,2.665,89,1.015,116,2.28,375,1.136,412,2.713,1169,3.126,1182,4.014,1183,4.014]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[38,0.08,57,1.795,89,1.16,106,3.912,111,1.447,116,2.606,120,1.527,121,0.888,122,1.788,195,2.196,238,2.64,262,1.447,282,2.297,329,1.625,352,2.124,354,2.175,376,4.741,412,3.1,616,3.324,1182,8.559]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[74,0.938,607,5.518,1029,5.518,1459,5.138,1722,5.778]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1459,4.992,1722,5.614,1723,4.51,1724,5.614,1725,5.614]],["toc//docs/applications/messaging/using-weechat-for-irc/",[38,0.049,51,1.166,53,3.425,55,3.442,56,3.442,58,1.9,67,1.609,73,0.594,74,0.834,75,0.873,76,0.879,99,1.056,115,0.207,121,0.884,128,0.672,287,0.407,298,3.557,318,1.59,331,1.295,387,2.191,393,2.382,418,3.895,474,2.092,485,2.279,516,1.934,587,3.511,608,1.454,630,3.101,641,1.988,642,1.795,679,2.984,705,2.462,1024,2.191,1027,2.984,1111,1.209,1243,2.14,1288,1.951,1722,8.79,1723,2.608,1726,2.555,1727,3.442,1728,3.739,1729,5.446,1730,3.739,1731,5.446,1732,3.739,1733,3.739]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[38,0.06,128,1.296,291,3.165,1734,6.265]],["keywords//docs/applications/messaging/install-znc-debian/",[1734,5.614,1735,6.466,1736,6.466,1737,6.466,1738,6.466]],["toc//docs/applications/messaging/install-znc-debian/",[38,0.062,67,3.204,72,3.718,75,1.739,76,1.75,115,0.413,168,4.6,277,3.127,644,2.778,739,2.792,759,3.815,1734,8.47,1739,7.444,1740,7.444]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[74,1.017,119,4.178,725,4.751,729,2.568]],["keywords//docs/email/using-google-apps-for-email/",[1741,7.72,1742,7.72,1743,7.72]],["toc//docs/email/using-google-apps-for-email/",[66,1.848,341,4.344,443,5.598,861,5.383,983,7.33,1702,7.617]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[51,2.249,115,0.4,592,4.229,1397,4.282]],["keywords//docs/networking/linux-static-ip-configuration/",[152,4.581,611,6.16,1397,4.581]],["toc//docs/networking/linux-static-ip-configuration/",[46,3.221,51,1.852,67,2.557,99,2.364,115,0.329,128,1.067,131,2.481,139,1.802,152,3.526,287,0.912,335,0.847,355,3.784,393,3.784,619,2.481,724,2.968,893,4.236,896,4.741,991,2.496,1111,1.921,1288,3.1,1335,5.158,1397,3.526,1483,3.672,1654,4.926,1744,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/",[86,1.918,287,0.627,352,2.059,1297,4.596,1353,4.206,1682,2.479,1745,4.446]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[191,0.626,193,1.174,881,2.695,1297,3.67,1353,3.359,1357,3.993,1468,3.67,1745,3.551,1746,3.028,1747,4.599]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[5,2.271,32,1.38,38,0.087,57,1.396,66,1.687,115,0.555,121,0.69,122,1.39,180,3.294,195,1.708,196,2.066,211,2.456,214,2.644,282,1.268,283,1.614,290,1.796,320,3.687,479,2.99,489,3.687,666,1.38,722,2.039,725,3.042,753,2.253,861,2.707,881,2.707,1353,5.087,1745,6.473,1748,4.62,1749,4.253,1750,4.62]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[804,0.471]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[128,0.969,131,2.254,191,0.734,193,1.377,331,1.869,1217,4.475,1535,3.244,1751,4.475]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[191,0.88,193,1.65,1048,5.614,1140,2.487,1222,5.953]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[38,0.066,115,0.564,191,1.081,193,2.866,277,3.338,462,6.135,1217,8.439,1751,6.589]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[121,0.994,122,2.003,128,1.195,190,3.949,256,4.641]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[111,1.575,128,1.162,190,3.837,375,1.413,1486,5.953]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[38,0.057,67,2.955,73,1.091,74,0.967,115,0.381,126,3.296,190,7.135,262,1.672,278,4.243,283,2.399,917,4.243,918,3.65,919,3.091,1752,6.865]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[38,0.055,115,0.369,128,1.195,809,5.138,1753,6.655]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[128,1.264,375,1.538,809,5.433,1301,6.11]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[38,0.087,115,0.581,335,1.186,375,1.819,666,2.485,809,8.09,1324,1.225]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[73,0.857,74,0.76,115,0.299,730,2.281,1023,2.024,1024,3.162,1026,3.941,1623,3.553]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[729,2.301,730,2.733,1023,2.425,1026,4.722,1616,4.51]],["toc//docs/email/postfix/postfix-smtp-debian7/",[32,1.663,38,0.046,73,0.884,79,1.701,111,1.356,113,2.96,115,0.518,119,3.223,121,1.194,139,1.688,262,1.356,438,3.491,666,1.663,725,3.665,919,3.597,1023,3.506,1025,4.616,1026,4.065,1027,4.442,1028,5.124,1029,4.616,1133,4.174,1754,4.297,1755,5.567,1756,5.567]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[38,0.065,115,0.437,1757,6.842]],["keywords//docs/applications/cloud-storage/dropbox/",[92,3.214,99,1.469,128,0.934,287,0.566,556,4.787,1111,1.681,1301,4.515,1757,4.515]],["toc//docs/applications/cloud-storage/dropbox/",[38,0.078,115,0.523,139,2.86,640,6.888,1757,8.189]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[5,3.271,51,2.074,679,5.31,1758,5.778,1759,5.518]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[175,3.285,1496,4.848,1760,6.466,1761,6.466,1762,6.466]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[5,3.905,51,2.477,99,2.244,128,1.427,287,0.866,679,6.341,1111,2.569,1288,4.146,1483,4.911,1497,4.984,1758,6.899,1759,6.589]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[996,3.837]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[73,1.146,722,3.185,1111,2.333,1763,6.642]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[722,2.64,1111,1.934,1764,5.981,1765,4.368,1766,4.484,1767,5.981]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[38,0.087,73,1.314,111,2.015,115,0.611,120,1.501,121,1.236,122,1.758,134,2.704,191,0.795,192,1.669,193,1.491,329,1.598,357,1.428,375,2.282,642,2.805]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[804,0.471]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[20,1.754,128,1.035,331,1.994,587,3.418,752,1.657,1066,3.463,1436,4.596]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[128,0.999,612,2.488,850,3.543,1768,4.613,1769,5.563,1770,5.121,1771,5.121]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[20,2.475,38,0.086,51,2.534,53,4.706,58,4.13,67,3.499,72,4.061,139,2.465,1768,8.562]],["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/",[20,1.643,287,0.588,331,1.869,587,3.202,752,1.552,1066,3.244,1436,4.306,1682,2.323]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[287,0.652,612,2.675,1746,3.937,1768,4.959,1770,5.506,1771,5.506]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[20,2.475,38,0.086,51,2.534,53,4.706,58,4.13,67,3.499,72,4.061,139,2.465,1768,8.562]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[804,0.471]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[74,0.87,287,0.673,365,4.63,370,4.51,1070,4.63,1682,2.658]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[287,0.767,367,6.11,370,5.14,1682,3.029]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,2.412,20,1.779,38,0.049,51,2.578,53,4.788,58,4.202,67,3.56,73,0.928,115,0.324,262,1.423,298,4.972,365,7.198,370,8.046,587,4.908,589,4.267,606,3.467]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[804,0.471]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[66,1.242,99,1.744,121,0.923,668,2.92,1044,3.455,1772,5.361]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[111,1.575,271,2.836,668,3.058,858,3.257,1773,4.992]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[28,2.504,38,0.042,66,1.009,73,0.796,77,1.776,79,2.263,86,1.669,91,2.242,111,1.221,115,0.278,120,1.288,121,1.452,211,2.665,261,2.718,318,3.148,562,3.87,573,3.661,619,3.092,641,2.665,668,4.163,861,2.938,1044,4.925,1045,4.157,1497,3.144,1773,3.87,1774,4.353,1775,4.157,1776,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[804,0.471]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[66,1.159,121,0.861,128,1.035,131,2.405,668,2.724,1044,3.222,1535,3.463]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[111,1.575,271,2.836,668,3.058,858,3.257,1773,4.992]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[28,2.504,38,0.042,66,1.009,73,0.796,77,1.776,79,2.263,86,1.669,91,2.242,111,1.221,115,0.278,120,1.288,121,1.452,211,2.665,261,2.718,318,3.148,562,3.87,573,3.661,619,3.092,641,2.665,668,4.163,861,2.938,1044,4.925,1045,4.157,1497,3.144,1773,3.87,1774,4.353,1775,4.157,1776,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[804,0.471]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[66,1.159,121,0.861,287,0.627,668,2.724,1044,3.222,1682,2.479,1777,2.952]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[111,1.575,271,2.836,668,3.058,858,3.257,1773,4.992]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[28,2.504,38,0.042,66,1.009,73,0.796,77,1.776,79,2.263,86,1.669,91,2.242,111,1.221,115,0.278,120,1.288,121,1.452,211,2.665,261,2.718,318,3.148,562,3.87,573,3.661,619,3.092,641,2.665,668,4.163,861,2.938,1044,4.925,1045,4.157,1497,3.144,1773,3.87,1774,4.353,1775,4.157,1776,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[804,0.471]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[4,5.41,17,5.27,1260,5.145,1778,6.642]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[17,3.797,99,1.469,128,0.934,262,1.267,287,0.566,1111,1.681,1260,3.707,1778,4.787]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[17,5.803,38,0.066,52,4.715,88,3.626,93,3.485,99,2.244,128,1.427,262,1.936,287,0.866,739,2.98,1111,2.569,1779,7.946]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[38,0.055,287,0.725,730,2.812,949,4.238,1682,2.864]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[287,0.501,375,1.005,448,3.551,729,1.637,730,1.944,1023,1.725,1351,3.993,1557,2.422,1682,1.979,1780,2.842]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[38,0.063,115,0.421,121,1.136,139,3,270,2.77,277,3.195,307,5.422,448,7.637,666,2.271,1351,6.602,1780,6.114]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[804,0.471]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[32,1.612,120,1.387,121,0.806,191,1.063,329,1.476,1277,4.968,1781,5.396]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[32,1.374,99,1.299,128,0.826,287,0.501,1001,2.225,1111,1.487,1288,2.4,1477,4.234,1483,2.842,1782,4.599]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[32,2.529,33,2.858,115,0.335,120,2.176,121,1.265,128,1.086,143,3.978,156,3.381,180,4.309,191,0.822,196,2.702,245,4.665,287,0.658,329,2.316,418,3.978,577,4.309,641,3.213,844,4.665,933,3.735,1001,2.923,1775,5.011,1783,5.563]],["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/",[66,1.159,74,0.812,99,1.627,137,2.449,144,2.647,1772,5.001,1784,4.446]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[99,1.826,137,2.749,144,2.971,1772,5.614,1784,4.992]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[38,0.066,77,2.815,115,0.44,137,3.378,144,3.652,266,5.327,279,4.185,441,4.777,616,4.446,1784,7.857,1785,7.315]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[66,1.159,74,0.812,137,2.449,144,2.647,287,0.627,1682,2.479,1784,4.446]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[137,2.543,144,2.748,287,0.652,516,3.092,1682,2.574,1784,4.617]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[38,0.066,77,2.815,115,0.44,137,3.378,144,3.652,266,5.327,279,4.185,441,4.777,616,4.446,1784,7.857,1785,7.315]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[804,0.471]],["title//docs/platform/billing-and-payments/",[1003,6.338,1005,6.507]],["keywords//docs/platform/billing-and-payments/",[1003,6.243,1005,6.409]],["toc//docs/platform/billing-and-payments/",[15,3.333,20,2.494,32,1.328,69,3.686,86,2.252,88,2.029,120,1.142,156,2.487,188,2.747,335,0.965,340,2.673,356,2.41,382,2.043,427,2.515,452,3.333,577,3.17,608,1.728,650,2.788,721,5.874,1000,4.623,1002,3.86,1003,6.685,1005,5.073,1056,3.247,1090,3.86,1324,0.655,1700,3.686,1786,4.446,1787,4.446,1788,3.432,1789,4.092,1790,4.446,1791,3.432,1792,3.86,1793,5.874,1794,3.686]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[128,1.195,186,5.518,256,4.641,602,4.461,1795,5.778]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1795,7.422,1796,8.548]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[72,4.679,73,1.488,79,2.14,113,3.722,115,0.388,277,3.935,282,1.921,441,4.209,616,5.241,619,2.924,666,2.091,1795,9.166]],["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/",[20,1.754,121,0.861,122,1.733,557,5.302,612,2.576,1065,3.296,1797,5.759]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[137,2.749,1065,5.079,1798,5.953,1799,6.466]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[51,2.423,53,4.499,58,3.948,73,1.234,121,1.161,122,2.339,298,4.672,376,6.201,587,4.612,666,2.321,703,6,1497,4.874,1798,7.154]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[57,2.622,460,6.925]],["keywords//docs/platform/package-mirrors/",[20,1.486,57,1.475,99,1.379,128,0.877,220,3.768,221,2.243,287,0.532,460,3.895,1800,4.493]],["toc//docs/platform/package-mirrors/",[57,2.401,99,2.244,121,1.769,128,1.427,282,3.082,287,0.866,460,6.341]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[89,1.206,128,1.109,131,2.579,412,3.222,1168,3.283,1535,3.712]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[11,2.949,38,0.089,57,2.158,89,1.853,121,1.067,195,2.64,270,2.602,277,3.001,357,1.746,375,1.561,422,4.558,670,5.371]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[38,0.042,51,1.583,89,0.991,128,0.912,190,3.013,193,1.296,214,2.905,219,2.699,1149,2.579]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[39,2.076,51,1.621,89,1.015,193,1.327,1149,2.642,1666,2.441,1801,4.311,1802,2.555]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[38,0.08,73,1.711,75,1.703,76,1.714,89,1.423,111,1.776,115,0.404,192,2.082,193,1.861,309,5.084,352,2.606,375,1.593,1140,2.804]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[73,1.057,128,1.195,131,2.779,1149,3.381,1535,4.001]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[39,2.076,51,1.621,89,1.015,193,1.327,1149,2.642,1666,2.441,1801,4.311,1802,2.555]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[38,0.087,73,1.469,89,1.805,111,1.672,115,0.381,120,1.764,121,1.026,192,1.96,193,1.752,329,1.877,352,2.454,357,1.678,375,1.5,666,2.05,1140,2.641]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[11,2.979,432,4.751,794,4.525,1046,5.571]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[128,1.162,287,0.704,516,3.343,794,4.055,1046,4.992]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[20,1.163,24,3.317,31,2.115,38,0.032,74,0.538,75,0.892,76,0.898,115,0.541,139,1.159,149,4.29,161,2.611,192,1.091,266,2.561,268,1.834,269,2.328,277,1.605,296,2.79,416,2.665,441,2.297,476,2.433,673,2.957,794,6.633,1046,8.4,1047,4.394,1056,2.79,1320,3.049,1803,3.82,1804,5.224,1805,3.317,1806,3.82,1807,3.82,1808,3.82,1809,4.394,1810,3.317,1811,3.82]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[99,1.88,125,1.914,991,2.796,1023,2.496,1812,5.778]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[125,2.025,1023,2.64,1344,4.414,1812,6.11]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[38,0.071,139,2.584,166,4.994,231,6.389,255,6.579,532,7.066,666,2.545,1812,7.399,1813,6.076]],["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/",[89,1.124,287,0.627,412,3.005,1156,2.831,1168,3.062,1682,2.479,1777,2.952]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,3.139,38,0.082,75,1.776,76,1.787,89,1.931,270,2.77,277,3.195,375,1.662,422,4.749,670,5.596]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[804,0.471]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[38,0.055,99,1.88,115,0.369,991,2.796,1814,3.472]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[99,1.988,162,5.018,375,1.538,1814,3.672]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[38,0.086,75,1.899,76,1.911,115,0.451,139,2.465,265,5.67,644,3.034,1814,5.921]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[44,4.319]],["keywords//docs/applications/containers/what-is-docker/",[44,2.892,46,3.506,99,1.826,287,0.704,1682,2.783]],["toc//docs/applications/containers/what-is-docker/",[38,0.062,44,3.329,89,1.453,99,2.103,117,5.307,118,5.192,249,4.99,287,0.811,335,1.061,805,5.436,991,3.127,1324,1.096,1682,3.204,1815,9.755]],["deprecated//docs/applications/containers/what-is-docker/",[804,0.471]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[38,0.055,89,1.299,128,1.195,131,2.779,1535,4.001]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[89,1.015,128,0.934,144,2.389,672,2.597,1615,4.515,1616,3.627,1646,4.515,1816,5.2]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[21,1.812,32,1.805,33,2.858,38,0.081,66,1.216,89,2.069,121,0.903,125,1.738,128,1.086,221,2.777,262,1.472,290,2.349,291,2.65,308,2.453,357,1.477,666,1.805,752,1.738,812,3.865,1006,2.278,1817,3.125]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[74,0.87,111,1.504,375,1.35,1032,3.348,1111,1.996,1763,5.684]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1818,7.72,1819,5.96,1820,6.401]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[38,0.061,74,1.027,115,0.533,278,4.506,282,2.001,335,1.039,375,2.504,917,4.506,918,3.876,919,3.282,1324,1.073,1658,5.466]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[804,0.471]],["title//docs/platform/api/api-key/",[64,5.714,183,3.988]],["keywords//docs/platform/api/api-key/",[183,3.548,1821,7.72,1822,7.106]],["toc//docs/platform/api/api-key/",[340,6.164,724,5.122]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[20,2.642,434,6.188]],["keywords//docs/platform/linode-cli/",[1822,6.479,1823,7.037,1824,7.037,1825,7.037]],["toc//docs/platform/linode-cli/",[20,1.548,32,1.519,38,0.062,51,1.585,53,4.332,64,3.348,74,0.717,104,2.63,128,1.344,183,2.337,277,3.729,283,1.777,287,0.815,298,4.498,341,2.405,384,3.143,427,2.877,434,6.329,493,4.217,587,4.44,616,2.845,1111,1.644,1131,3.409,1783,4.682,1826,5.086,1827,5.086,1828,5.086]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[38,0.06,99,2.038,375,1.577,991,3.031]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[51,1.355,99,1.228,111,1.059,188,2.687,190,2.58,375,0.95,1437,2.863,1438,3.47,1439,3.47,1440,3.605,1441,3.1]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[11,2.495,28,3.019,38,0.05,66,1.704,73,0.96,74,0.852,75,1.411,76,1.42,111,1.472,140,3.911,278,3.735,283,2.111,375,2.528,913,3.978,917,3.735,918,4.503,919,2.721,955,4.215,1035,3.458]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[181,5.571,233,3.666,444,2.544,1829,6.642]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[233,3.922,444,2.722,1829,7.106]],["toc//docs/networking/dns/previewing-websites-without-dns/",[32,2.133,51,2.227,53,4.135,58,3.629,79,3.259,120,2.74,139,2.166,152,4.239,298,4.294,587,4.239,592,4.186,609,5.954]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[38,0.06,128,1.296,131,3.014,375,1.577]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[51,1.222,111,0.955,128,0.704,188,2.423,190,2.326,375,0.857,1437,2.581,1438,3.128,1439,3.128,1440,3.25,1441,2.795,1615,3.404,1616,2.734]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[28,3.071,38,0.051,66,1.725,73,0.977,74,0.866,75,1.436,76,1.445,111,1.498,140,3.979,278,3.8,283,2.148,375,2.541,913,4.048,917,3.8,918,4.557,919,2.768,955,4.288,1035,3.518]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[38,0.051,128,1.109,219,3.283,287,0.673,437,3.035,1830,4.403]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[128,0.999,287,0.606,850,3.543,1830,3.966,1831,5.563,1832,4.83,1833,5.563]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[38,0.071,115,0.59,120,2.19,192,2.433,261,4.62,329,2.33,759,4.367,1830,6.076]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[38,0.06,128,1.296,131,3.014,1830,5.145]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[128,1.264,1616,4.908,1830,5.018,1832,6.11]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[38,0.071,115,0.59,120,2.19,192,2.433,261,4.62,329,2.33,759,4.367,1830,6.076]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[804,0.471]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[38,0.06,287,0.786,1682,3.106,1830,5.145]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[287,0.767,1682,3.029,1830,5.018,1832,6.11]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[38,0.071,115,0.59,120,2.19,192,2.433,261,4.62,329,2.33,759,4.367,1830,6.076]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[804,0.471]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[99,1.744,191,0.84,193,1.576,331,2.138,991,2.594,1220,3.418]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[144,2.389,191,0.707,193,1.327,1220,2.878,1666,2.441,1834,3.553,1835,3.553,1836,4.515]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[38,0.071,75,1.99,76,2.003,115,0.472,191,1.447,193,2.715,1220,4.717]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[804,0.471]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[128,1.035,131,2.405,191,0.784,193,1.47,331,1.994,1220,3.188,1535,3.463]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[191,0.757,193,1.42,1220,3.079,1666,2.612,1834,3.801,1835,3.801,1836,4.83]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[38,0.066,75,1.856,76,1.868,115,0.44,191,1.385,193,2.598,270,2.895,1220,4.398,1837,5.958,1838,7.315]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[804,0.471]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[38,0.055,128,1.195,131,2.779,375,1.455,1814,3.472]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[128,0.999,162,3.966,375,1.216,1814,2.903,1839,4.613,1840,4.613,1841,4.613]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[38,0.063,75,1.776,76,1.787,79,2.324,121,1.136,122,2.289,139,2.306,262,1.852,265,5.303,590,4.769,644,2.838,1814,5.737]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[38,0.055,115,0.369,128,1.195,219,3.538,1814,3.472]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[128,0.826,162,3.279,193,1.174,375,1.005,850,2.929,1814,2.4,1839,3.814,1840,3.814,1841,3.814,1842,4.599]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[38,0.063,75,1.776,76,1.787,79,2.324,121,1.136,122,2.289,139,2.306,262,1.852,265,5.303,590,4.769,644,2.838,1814,5.737]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[73,1.146,722,3.185,1111,2.333,1843,7.216]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1765,5.14,1766,5.276,1844,7.037,1845,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[38,0.087,73,1.314,111,2.015,115,0.611,120,1.501,121,1.236,122,1.758,134,2.704,191,0.795,192,1.669,193,1.491,329,1.598,357,1.428,375,2.282,642,2.805]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[804,0.471]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[73,1.057,99,1.88,191,0.905,192,1.9,991,2.796]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[99,1.689,191,0.814,993,4.772,1679,3.937,1846,3.871,1847,5.506]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[38,0.089,75,1.668,76,1.679,115,0.396,120,1.835,191,1.546,196,3.194,308,3.853,329,1.953,422,3.429,1454,5.514]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[119,4.562,375,1.722,885,5.384]],["keywords//docs/platform/longview/longview-app-for-mysql/",[375,1.687,885,5.275,1622,4.704]],["toc//docs/platform/longview/longview-app-for-mysql/",[16,3.13,33,2.076,38,0.036,67,3.915,111,1.633,115,0.451,128,0.789,175,2.231,244,2.484,254,3.977,287,0.478,335,0.626,356,2.38,375,1.776,384,2.713,650,2.754,753,2.141,794,2.754,1011,3.503,1038,6.094,1255,3.503,1258,3.13,1406,3.64,1423,7.542,1622,2.675,1848,4.042,1849,3.812,1850,4.39,1851,4.39,1852,3.503,1853,3.64,1854,4.042,1855,4.39,1856,3.64]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[89,1.538,119,4.562,885,5.384]],["keywords//docs/platform/longview/longview-app-for-nginx/",[89,1.374,885,4.809,1622,4.289,1857,7.037]],["toc//docs/platform/longview/longview-app-for-nginx/",[16,5.45,33,2.476,38,0.044,67,2.254,73,0.832,89,1.763,115,0.424,128,0.941,147,2.784,175,2.66,244,2.962,254,3.107,287,0.57,348,4.179,356,2.839,384,3.236,595,5.45,608,2.035,650,3.284,753,2.553,1255,4.179,1406,4.342,1423,4.342,1622,3.191,1852,4.179,1853,4.342,1856,4.342,1858,4.547,1859,4.547,1860,4.342]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[119,4.562,191,1.072,885,5.384]],["keywords//docs/platform/longview/longview-app-for-apache/",[191,0.957,885,4.809,1622,4.289,1861,7.037]],["toc//docs/platform/longview/longview-app-for-apache/",[16,5.016,33,2.214,38,0.039,73,0.744,115,0.39,128,0.841,142,2.489,147,2.489,175,2.378,191,1.15,244,2.648,254,2.778,270,1.705,287,0.51,348,3.736,356,2.538,384,2.893,595,3.338,608,1.82,650,2.936,753,2.282,1255,3.736,1406,5.833,1423,3.882,1585,4.309,1622,2.853,1690,4.309,1848,4.309,1852,3.736,1853,3.882,1854,4.309,1856,3.882,1858,4.065,1859,4.065,1860,3.882,1862,4.681,1863,4.065,1864,4.681]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[73,1.252,722,3.478,1483,4.87]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[722,3.408,1483,4.771,1865,7.106]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[38,0.087,73,1.329,111,2.039,115,0.638,120,1.527,121,1.25,122,1.788,191,0.808,192,1.697,193,1.516,329,1.625,357,1.452,375,2.117,1866,5.158]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[804,0.471]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[20,2.197,120,1.854,186,5.983,1496,5.41]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1496,5.788,1867,7.72,1868,7.72]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[20,1.905,23,2.78,38,0.052,73,0.994,75,1.461,76,1.471,77,2.216,93,2.744,122,1.883,154,3.867,192,1.787,214,3.58,233,4.408,341,4.104,354,2.29,541,7.195,642,3.004,722,2.762,729,2.226,1601,3.867,1804,5.433]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[73,1.057,128,1.195,131,2.779,722,2.937,1535,4.001]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[128,0.781,191,0.592,193,1.11,375,0.95,722,1.919,1476,3.605,1616,3.033,1765,3.175,1869,4.348,1870,3.775,1871,4.348]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[38,0.079,66,1.437,75,1.668,76,1.679,111,1.74,115,0.591,120,1.835,134,3.306,191,0.972,193,1.823,329,1.953,375,2.075,642,3.429]],["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/",[38,0.055,51,2.074,214,3.808,722,2.937,1288,3.472]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[191,0.561,193,1.052,375,0.901,722,1.82,1288,2.151,1468,3.29,1872,4.123,1873,4.123,1874,4.123,1875,4.123,1876,4.123,1877,3.58]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[38,0.081,51,2.64,66,1.216,73,0.96,75,1.411,76,1.42,87,2.495,111,1.472,115,0.542,120,1.553,134,2.797,191,1.152,193,2.162,329,1.653,375,1.851,642,2.901,722,2.667,1288,3.153]],["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/",[20,2.197,287,0.786,1253,4.282,1682,3.106]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[287,0.767,1253,4.176,1682,3.029,1878,6.479]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[32,1.902,38,0.073,72,3.182,73,1.012,79,1.947,102,2.99,115,0.557,121,0.952,122,1.917,211,3.387,282,1.748,335,0.908,354,2.332,903,5.083,906,3.937,1253,5.967,1324,0.938,1879,6.37]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[804,0.471]],["title//docs/development/version-control/introduction-to-version-control/",[52,4.676,59,4.618,426,3.727]],["keywords//docs/development/version-control/introduction-to-version-control/",[50,3.607,1183,5.433,1880,7.037,1881,7.037]],["toc//docs/development/version-control/introduction-to-version-control/",[11,2.78,38,0.056,50,3.451,52,6.142,74,0.949,113,3.58,121,1.006,122,2.027,203,3.853,282,1.848,426,4.895,432,4.434,1882,6.734,1883,7.923,1884,6.734]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[128,1.109,131,2.579,191,0.84,412,3.222,1168,3.283,1535,3.712]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1169,4.231,1485,4.349,1885,6.11,1886,5.276]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[38,0.065,104,4.018,115,0.431,119,4.499,121,1.161,191,1.057,238,3.453,352,2.778,357,1.899,382,3.571,670,5.676,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[38,0.055,287,0.725,375,1.455,1682,2.864,1814,3.472]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[162,3.1,287,0.474,375,0.95,1156,2.137,1746,2.863,1777,2.228,1814,2.269,1839,3.605,1840,3.605,1841,3.605,1887,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[38,0.063,75,1.776,76,1.787,79,2.324,121,1.136,122,2.289,139,2.306,262,1.852,265,5.303,590,4.769,644,2.838,1814,5.737]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[804,0.471]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[38,0.055,287,0.725,375,1.455,737,3.684,1814,3.472]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[162,3.1,287,0.474,375,0.95,1156,2.137,1172,2.915,1777,2.228,1814,2.269,1839,3.605,1840,3.605,1841,3.605,1887,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[38,0.063,75,1.776,76,1.787,79,2.324,121,1.136,122,2.289,139,2.306,262,1.852,265,5.303,590,4.769,644,2.838,1814,5.737]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[73,0.981,192,1.763,287,0.673,1135,3.763,1682,2.658,1777,3.165]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[672,3.856,1135,4.704,1137,7.106]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[38,0.043,66,1.038,85,6.383,88,2.355,115,0.496,120,2.533,121,0.771,196,2.308,287,0.562,308,2.094,329,2.696,331,1.787,357,1.261,429,3.869,616,4.231,1118,4.118,1135,4.608,1138,7.772,1139,4.48,1481,4.118,1751,4.279,1888,4.75]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[804,0.471]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[73,0.981,128,1.109,131,2.579,191,0.84,192,1.763,1535,3.712]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[128,1.074,191,0.814,1535,3.596,1616,4.171,1847,5.506,1889,5.193]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[38,0.089,75,1.668,76,1.679,115,0.396,120,1.835,191,1.546,196,4.246,308,3.853,329,1.953,422,3.429]],["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/",[128,0.969,131,2.254,262,1.315,287,0.588,693,2.718,859,3.437,1682,2.323,1777,2.766]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[128,0.934,287,0.566,407,2.689,619,2.172,693,2.619,1616,3.627,1682,2.238,1878,4.787]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[20,1.464,30,3.354,38,0.06,67,3.089,72,4.29,73,0.764,115,0.267,121,0.718,183,3.947,262,1.171,267,3.016,374,2.891,382,2.21,407,4.441,485,2.93,608,1.869,693,3.616,724,3.586,739,2.692,752,1.383,915,3.354,958,3.429,959,3.429,966,3.429,1063,3.113,1065,2.752,1259,4.427,1294,3.429,1890,3.512,1891,3.605]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[804,0.471]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[375,1.455,753,3.245,1023,2.496,1536,5.778,1557,3.505]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[375,1.687,1023,2.895,1557,4.066]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[20,1.244,53,2.365,77,2.246,93,2.781,115,0.226,121,0.61,122,1.23,142,2.172,168,2.525,270,1.488,279,2.152,283,2.215,297,2.365,329,1.734,331,1.415,341,2.999,375,0.893,476,2.602,644,1.525,645,2.781,651,3.547,746,2.984,753,1.992,861,2.394,913,2.69,984,4.858,1023,3.285,1026,2.984,1258,2.913,1557,4.612,1561,2.49,1892,3.547,1893,3.761,1894,4.086,1895,4.086,1896,4.086,1897,4.086,1898,4.086]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[38,0.051,128,1.109,191,0.84,219,3.283,412,3.222,1168,3.283]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1169,4.231,1485,4.349,1885,6.11,1886,5.276]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[38,0.065,75,1.815,76,1.827,104,4.018,115,0.431,119,4.499,191,1.057,238,3.453,352,2.778,382,3.571,670,5.676,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[168,4.87,175,4.003,589,5.755]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[128,0.999,168,3.438,175,2.826,262,1.355,589,4.063,1535,3.344,1899,5.563]],["toc//docs/security/encryption/full-disk-encryption-xen/",[11,2.834,38,0.057,66,1.381,115,0.512,122,2.066,128,1.661,168,4.243,175,4.697,270,2.501,432,4.52,479,4.443,589,5.014,602,4.602,1900,6.32,1901,6.32,1902,6.865]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[804,0.471]],["title//docs/platform/automating-server-builds/",[73,1.252,81,4.038,165,4.676]],["keywords//docs/platform/automating-server-builds/",[175,3.285,710,4.848,1503,4.61,1903,6.466,1904,6.466]],["toc//docs/platform/automating-server-builds/",[20,3.183,32,2.05,73,1.091,81,3.518,86,2.286,152,4.074,156,3.841,165,4.074,175,3.488,357,1.678,573,5.014,592,4.023,771,4.691,884,4.788,1640,5.478,1641,5.478,1905,6.865]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[73,1.252,331,2.728,730,3.33]],["keywords//docs/email/running-a-mail-server/",[1344,4.414,1642,5.616,1662,6.11,1906,7.037]],["toc//docs/email/running-a-mail-server/",[23,1.951,38,0.036,72,2.193,73,1.556,81,2.25,86,1.462,93,1.926,130,5.024,136,2.943,150,2.943,222,3.13,331,1.52,364,3.64,382,2.018,443,4.953,444,2.363,644,1.639,730,4.68,739,1.647,746,3.206,752,1.263,1000,3,1193,4.042,1233,3.389,1247,4.042,1524,3.13,1623,2.89,1702,3.64,1901,4.042,1907,3.292,1908,4.042,1909,4.39,1910,4.39]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[375,1.577,729,2.568,1023,2.706,1557,3.8]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[73,0.775,128,0.877,287,0.532,375,1.067,729,1.737,730,2.063,1023,1.831,1557,2.571,1911,4.881]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[28,2.968,38,0.07,57,1.795,75,1.388,76,1.397,91,2.657,115,0.329,139,2.538,152,4.966,341,3.958,375,1.299,444,2.095,641,4.449,644,2.217,729,3.447,739,2.228,1023,2.228,1557,3.129,1561,5.1]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[128,1.296,131,3.014,1001,3.491,1535,4.338]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1535,4.231,1912,6.479,1913,6.479,1914,7.037]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[5,3.31,11,2.78,20,2.05,32,2.011,38,0.056,86,2.242,122,2.027,128,1.21,131,2.812,154,4.162,317,4.801,354,2.465,476,4.289,538,4.223,705,4.434,753,3.283,984,3.451,1001,4.415,1536,5.847]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[804,0.471]],["title//docs/security/linode-manager-security-controls/",[20,2.197,21,2.163,262,1.758,426,3.412]],["keywords//docs/security/linode-manager-security-controls/",[262,1.575,911,4.722,919,2.911,1119,4.992,1915,6.466]],["toc//docs/security/linode-manager-security-controls/",[23,1.858,28,2.089,64,2.754,68,3.136,82,1.626,83,3.85,87,1.727,88,1.909,93,1.834,115,0.232,123,5.262,126,2.008,152,3.831,183,1.922,262,1.019,265,2.917,270,2.352,279,4.67,283,1.461,292,3.337,307,2.982,355,4.112,427,2.366,592,3.784,608,1.626,645,1.834,724,2.089,729,1.488,748,6.845,898,2.982,919,1.883,961,3.468,985,3.054,1077,6.539,1119,3.229,1916,4.182,1917,4.182]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[91,3.524,122,2.371,154,4.87]],["keywords//docs/security/backups/backing-up-your-data/",[156,4.966,166,3.789,1918,5.16,1919,6.466]],["toc//docs/security/backups/backing-up-your-data/",[0,2.834,51,1.77,53,2.056,54,2.299,58,1.804,73,0.902,86,1.182,121,0.848,122,2.439,150,2.381,154,3.509,156,6.228,166,2.081,175,1.804,182,2.594,185,1.907,254,3.369,275,2.338,291,1.558,298,2.135,318,1.51,365,2.663,375,0.776,384,2.195,477,5.476,494,2.945,560,2.834,587,2.108,779,2.742,1754,2.742,1860,2.945,1918,7.071,1920,3.269,1921,2.742,1922,4.93,1923,2.945,1924,3.269,1925,2.945,1926,3.551,1927,3.551,1928,3.551,1929,3.551]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[74,1.223,885,5.93]],["keywords//docs/platform/longview/longview/",[885,5.275,1930,7.72,1931,7.72]],["toc//docs/platform/longview/longview/",[32,1.345,38,0.057,64,2.964,72,4.123,77,1.595,91,3.055,119,2.607,175,2.287,178,2.824,183,3.139,220,3.476,244,2.547,268,2.161,269,2.744,282,1.236,384,2.783,422,2.161,619,1.88,649,3.476,753,2.195,852,3.288,861,2.638,883,3.593,885,7.124,1053,3.288,1435,3.909,1863,3.909,1932,4.502,1933,4.502,1934,4.502,1935,4.502,1936,4.502,1937,4.502,1938,4.502,1939,3.733,1940,3.909]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[20,2.642,21,2.602]],["keywords//docs/platform/linode-managed/",[911,6.243,1941,8.548]],["toc//docs/platform/linode-managed/",[11,2.07,20,1.526,28,2.504,38,0.062,86,3.738,113,2.665,115,0.278,121,0.749,125,1.442,141,4.353,183,2.304,283,1.752,340,3.014,355,4.715,374,3.014,432,3.301,612,2.242,641,4.68,918,2.665,1063,3.245,1258,5.279,1810,4.353,1859,4.353,1892,4.353,1939,4.157,1942,5.013,1943,5.013]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[38,0.051,51,1.925,73,0.981,576,3.816,612,2.762,1944,5.361]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[516,3.992,612,3.452,1944,6.703]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[20,1.905,33,2.959,38,0.072,51,2.705,53,3.622,58,3.179,67,2.693,128,1.124,268,3.004,287,0.682,298,3.762,354,2.29,364,5.188,365,4.691,494,5.188,587,3.713,612,2.798,1288,3.265,1944,9.34]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[191,0.84,287,0.673,1144,3.455,1682,2.658,1777,3.165,1945,3.533]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[667,3.343,1946,6.466,1947,6.466,1948,5.953,1949,5.16]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[38,0.074,74,1.262,139,2.715,191,1.218,666,2.674,1144,6.136]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[38,0.051,287,0.673,1243,3.533,1682,2.658,1950,3.664,1951,3.997]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[516,2.378,903,3.67,1746,3.028,1950,2.729,1952,3.359,1953,3.028,1954,3.028,1955,2.977,1956,2.977,1957,4.599]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[38,0.073,115,0.484,121,1.305,268,4.192,439,5.321,666,2.608,1950,6.409]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[804,0.471]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[39,2.154,74,0.76,89,1.054,119,3.124,287,0.588,352,1.929,1276,2.79,1682,2.323]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[39,2.076,89,1.015,287,0.566,766,2.665,1276,2.689,1958,5.2,1959,5.2,1960,4.787]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[38,0.066,73,1.262,82,3.089,88,3.626,89,1.551,115,0.564,335,1.133,666,2.373,1276,5.262,1324,1.17]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[804,0.471]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[73,0.915,287,0.627,352,2.059,730,2.434,1024,3.375,1682,2.479,1961,3.418]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1344,3.751,1746,3.937,1961,3.549,1962,5.981,1963,4.484,1964,4.484]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[38,0.065,57,2.348,86,2.587,115,0.556,121,1.161,139,2.357,142,4.132,195,2.872,357,1.899,730,4.24,1961,4.612]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[804,0.471]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[287,0.588,703,4.166,1682,2.323,1777,2.766,1945,3.088,1965,3.764,1966,3.687,1967,3.289]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[193,1.526,1666,2.808,1746,3.937,1967,3.645,1968,4.368,1969,4.959]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[32,1.836,38,0.082,52,3.648,57,1.857,115,0.341,125,1.769,262,1.498,290,2.39,291,2.696,527,4.384,608,2.39,666,1.836,752,1.769,812,2.806,1006,2.318,1967,7.086,1970,5.66,1971,6.148]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[804,0.471]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[73,0.915,104,2.978,192,1.645,287,0.627,352,2.059,1682,2.479,1972,3.188]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[191,0.88,1135,3.94,1972,3.579,1973,4.722,1974,4.61]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[137,4.877,196,3.721,270,3.031,338,4.817,341,3.935,718,5.478,1135,6.386]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[804,0.471]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[86,2.216,125,1.914,287,0.725,1163,3.949,1682,2.864]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[144,1.998,307,3.1,516,2.248,612,1.945,1026,3.175,1163,2.58,1322,3.033,1746,2.863,1908,4.003,1975,4.348,1976,4.003]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[23,3.173,38,0.059,93,3.133,115,0.396,192,2.04,261,3.873,307,6.769,318,3.037,608,2.776,729,2.542,1163,5.634,1322,4.982,1623,4.703,1723,4.982,1977,6.575]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[287,0.627,729,2.049,1156,2.831,1682,2.479,1777,2.952,1945,3.296,1978,3.418]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1978,3.837,1979,6.466,1980,6.466,1981,4.418,1982,4.848]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[38,0.058,121,1.046,270,2.55,331,3.244,335,0.998,357,1.711,666,2.091,898,4.992,919,3.152,949,4.459,1324,1.031,1601,4.327,1780,4.327,1978,6.265,1983,5.113]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[287,0.627,729,2.049,737,3.188,1156,2.831,1279,5.001,1978,3.418,1984,5.759]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1978,3.837,1981,4.418,1982,4.848,1985,6.466,1986,6.466]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[38,0.061,121,1.089,270,2.656,331,3.332,357,1.782,666,2.177,898,5.198,919,3.282,949,4.643,1601,4.506,1780,4.506,1978,6.392,1983,5.324]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[996,3.837]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[89,1.054,287,0.588,1140,2.076,1156,2.652,1682,2.323,1777,2.766,1802,2.652,1945,3.088]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[89,1.262,1499,3.789,1987,4.992,1988,5.614,1989,4.51]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[38,0.051,57,1.857,61,5.643,66,1.237,102,2.886,113,4.557,115,0.592,120,1.58,121,0.919,139,1.865,195,2.272,270,2.24,329,1.681,357,1.503,444,2.168,498,3.269,1140,2.365,1395,3.856,1501,3.8,1802,3.021]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[804,0.471]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[191,0.691,193,1.296,287,0.553,331,1.758,1156,2.495,1220,2.81,1682,2.185,1777,2.602,1945,2.905]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[191,0.757,193,1.42,1220,3.079,1666,2.612,1834,3.801,1835,3.801,1836,4.83]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[38,0.066,75,1.856,76,1.868,115,0.44,191,1.385,193,2.598,270,2.895,1220,4.398,1837,5.958,1838,7.315]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[804,0.471]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[74,0.812,197,3.56,287,0.627,1243,3.296,1951,3.728,1990,3.375,1991,5.759]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1952,3.011,1954,2.714,1955,2.669,1956,2.669,1990,2.416,1992,4.123,1993,4.123,1994,3.091,1995,2.714,1996,2.213,1997,4.123,1998,4.123]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[38,0.055,74,0.931,77,2.341,88,3.016,115,0.366,120,1.698,248,3.873,283,2.309,297,3.826,329,1.807,357,1.615,444,2.33,684,3.826,753,3.222,1990,6.007,1996,3.548,1999,4.955,2000,4.609,2001,4.277]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[804,0.471]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[287,0.725,791,3.538,1682,2.864,1777,3.411,1945,3.808]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[111,1.575,858,3.257,2002,6.466,2003,6.466,2004,4.61]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[21,2.57,33,2.908,38,0.071,90,3.8,91,2.75,115,0.341,133,3.403,185,3.301,282,1.687,290,2.39,331,2.129,354,2.25,362,3.916,474,3.44,791,6.182,1044,3.44,2005,6.112]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[287,0.725,1281,3.853,1682,2.864,1777,3.411,1945,3.808]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.809,1281,4.074,1666,3.304,2006,5.276]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[38,0.084,66,1.305,77,2.298,81,3.324,82,3.946,111,1.58,121,0.969,335,0.925,352,2.319,357,1.585,666,1.937,1281,6.627,1324,0.955,2007,5.176]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[38,0.048,89,1.124,287,0.627,1156,2.831,1682,2.479,1777,2.952,1945,3.296]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[89,1.086,144,2.556,287,0.606,672,2.779,1988,4.83,2008,5.563,2009,5.563]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[33,3.311,38,0.098,75,1.635,76,1.646,89,2.201,139,2.123,221,4.305,291,3.071,2010,7.001,2011,7.001]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[804,0.471]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[287,0.725,1682,2.864,1777,3.411,1945,3.808,2012,3.808]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[66,0.964,74,0.675,287,0.522,413,3.417,1682,2.063,1777,2.456,1945,2.742,2016,3.155,2017,3.102,2018,4.412]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[413,4.61,985,4.722,990,4.992,2016,4.257,2017,4.185]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[38,0.068,77,2.879,115,0.629,331,2.815,752,2.339,2016,5.352,2017,7.345]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[125,1.552,282,1.481,287,0.588,645,2.367,1445,3.088,1682,2.323,1777,2.766,1945,3.088]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[191,0.84,287,0.673,554,3.816,1682,2.658,1777,3.165,1945,3.533]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.809,191,0.957,554,4.349,1275,3.234]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[38,0.056,75,1.573,76,1.583,77,2.385,115,0.643,117,4.801,118,4.697,191,0.916,238,2.992,337,4.918,766,5.686,1275,3.095,1281,3.899]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[287,0.725,1682,2.864,1777,3.411,1945,3.808,2019,3.645]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[50,2.851,287,0.606,415,3.344,1802,2.734,1969,4.613,2013,3.344,2019,3.047]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[38,0.093,73,1.091,77,2.432,89,1.34,115,0.579,191,0.934,192,1.96,282,1.884,335,0.979,684,3.975,1324,1.011,1601,4.243,2019,5.064]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[74,0.715,86,1.69,137,2.158,191,0.691,271,2.226,287,0.553,1682,2.185,1777,2.602,1945,2.905]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[74,0.812,125,1.657,287,0.627,716,4.107,1682,2.479,1921,4.446,2026,4.107]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[287,0.652,1746,3.937,2026,4.264,2027,5.193,2028,4.959,2029,5.981]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[38,0.077,72,3.429,74,0.967,115,0.512,121,1.026,221,3.155,238,3.05,270,2.501,349,4.895,542,4.306,666,2.05,1320,5.478,2026,6.592,2028,5.692,2030,5.3,2031,4.602]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[804,0.471]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[73,0.857,191,0.734,192,1.541,287,0.588,1156,2.652,1682,2.323,1777,2.766,1945,3.088]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[191,0.707,287,0.566,516,2.689,672,2.597,1746,3.423,1777,2.665,1889,4.515,2032,5.2]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[38,0.089,75,1.703,76,1.714,115,0.404,120,1.873,191,1.465,196,3.26,308,3.906,329,1.994,422,3.5,1454,5.628]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[804,0.471]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[73,0.915,192,1.645,233,2.926,287,0.627,352,2.059,1682,2.479,2033,3.155]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1746,4.257,1846,4.185,1969,5.362,2033,3.542,2034,6.466]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[38,0.057,57,2.074,58,3.488,115,0.381,121,1.026,124,4.306,262,2.252,291,3.011,357,1.678,608,3.593,707,5.714,767,6.317,984,3.518,2033,5.064]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[287,0.725,1682,2.864,1777,3.411,1945,3.808,2035,3.765]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[287,0.606,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2037,5.563]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[38,0.073,115,0.484,120,2.244,329,2.388,666,2.608,771,5.967,2035,6.11]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[73,0.981,74,0.87,192,1.763,287,0.673,1682,2.658,2033,3.382]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[612,2.183,1746,3.214,1846,3.159,1969,4.047,2033,2.674,2038,4.881,2039,3.895,2040,4.881,2041,3.565]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[38,0.057,57,2.074,58,3.488,115,0.381,121,1.026,124,4.306,262,2.252,291,3.011,357,1.678,608,3.593,707,5.714,767,6.317,984,3.518,2033,5.064]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[804,0.471]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[38,0.042,54,3.286,89,0.991,193,1.296,287,0.553,1140,1.953,1682,2.185,1777,2.602,1945,2.905]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[89,1.015,193,1.327,1140,2,1499,3.047,1500,3.486,1988,4.515,2042,5.2,2043,5.2]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[11,2.373,38,0.048,57,1.737,61,5.382,66,1.156,86,1.914,102,2.698,113,4.346,115,0.527,120,1.477,121,0.859,139,1.743,193,1.467,195,2.124,262,1.4,270,2.094,329,1.572,335,0.82,357,1.405,572,3.784,1140,2.211,1324,0.846,1395,3.605,1497,3.605,1501,3.552]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[73,0.981,287,0.673,1149,3.137,1682,2.658,1777,3.165,1945,3.533]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[32,1.637,38,0.066,57,1.656,73,1.255,89,1.809,111,1.335,115,0.304,120,1.408,121,0.819,125,1.577,192,1.565,193,1.399,262,1.335,282,1.504,287,0.597,291,2.404,329,1.499,330,3.547,352,3.312,354,2.006,357,1.339,375,1.198,752,1.577,812,2.501,1006,2.066,1140,2.108]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[21,1.522,287,0.553,475,3.052,729,1.806,1682,2.185,1726,3.469,1777,2.602,1945,2.905,2044,3.094]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[38,0.061,115,0.635,120,1.873,121,1.089,329,1.994,335,1.039,357,1.782,576,4.506,730,3.081,1324,1.073,2044,6.564]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[86,1.918,287,0.627,438,3.612,444,2.031,1682,2.479,2046,4.107,2047,3.155]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[287,0.652,444,2.109,619,2.498,2047,3.276,2048,5.981,2049,5.981]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[38,0.055,66,1.33,79,2.02,86,2.2,115,0.499,120,1.698,121,0.987,195,2.442,356,3.583,357,1.615,439,4.027,752,1.901,1376,5.931,2047,6.03,2050,4.609,2051,4.712]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[74,0.76,91,2.413,92,3.335,134,2.497,287,0.588,1682,2.323,2052,2.897,2053,3.848]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[287,0.704,858,3.257,2052,3.471,2054,4.61,2055,5.362]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[38,0.081,74,1.366,2052,6.175]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[74,0.675,142,2.548,287,0.522,444,1.69,1156,2.355,1682,2.063,1777,2.456,1945,2.742,2056,2.548,2057,3.275]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[444,2.109,794,3.751,2056,3.18,2058,4.772,2059,4.368,2060,3.211]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[804,0.471]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[111,1.315,287,0.588,352,1.929,375,1.179,1032,2.926,1682,2.323,1777,2.766,1945,3.088]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[375,1.413,1437,4.257,1746,4.257,2061,4.992,2062,4.722]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[28,3.126,38,0.052,66,1.746,73,0.994,111,1.524,140,4.05,278,3.867,283,2.186,352,2.237,375,2.555,666,1.869,913,4.119,917,3.867,918,4.613,919,2.817,955,4.364,1035,3.58]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[38,0.06,287,0.786,375,1.577,737,3.994]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[51,1.285,287,0.449,375,0.901,1172,2.764,1437,2.714,1439,3.29,1441,2.94,2063,4.123,2064,4.123,2065,4.123,2066,4.123,2067,4.123]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[28,3.071,38,0.051,66,1.725,73,0.977,74,0.866,75,1.436,76,1.445,111,1.498,140,3.979,278,3.8,283,2.148,375,2.541,913,4.048,917,3.8,918,4.557,919,2.768,955,4.288,1035,3.518]],["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/",[74,0.76,82,2.098,91,2.413,185,2.897,287,0.588,668,2.552,1682,2.323,1777,2.766]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[111,1.714,668,3.328,858,3.545,1009,4.809]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,3.139,38,0.063,73,1.571,88,3.47,115,0.421,248,4.456,335,1.084,538,4.769,668,5.507,1324,1.12]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[804,0.471]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[74,0.87,111,1.504,116,2.708,287,0.673,1032,3.348,1682,2.658]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[116,2.836,1033,5.16,1034,3.94,1132,4.335,1746,4.257]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[38,0.074,66,2.043,111,2.167,115,0.36,116,4.453,121,0.969,126,3.114,155,4.199,262,1.58,283,2.266,608,2.521,919,2.92,1035,3.712,1039,4.271,2068,5.008,2069,5.008]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[38,0.045,73,0.857,287,0.588,1682,2.323,1777,2.766,1945,3.088,1996,2.897,2070,3.162]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[1996,3.211,2070,3.505,2071,5.981,2072,4.484,2073,4.484,2074,4.484]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[38,0.062,73,1.182,74,1.049,115,0.413,221,3.421,222,5.307,270,2.712,444,2.625,641,3.958,752,2.141,1996,3.996,2001,4.818,2070,5.717,2075,5.581]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[73,0.981,287,0.673,722,2.726,1682,2.658,1777,3.165,1945,3.533]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[191,0.664,193,1.246,287,0.532,375,1.067,722,2.155,1468,3.895,2076,3.768,2077,4.881,2078,4.881]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[38,0.079,66,1.437,75,1.668,76,1.679,111,1.74,115,0.591,120,1.835,134,3.306,191,0.972,193,1.823,329,1.953,375,2.075,642,3.429]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[804,0.471]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[73,1.252,125,2.267,1925,6.534]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[8,5.362,125,2.553,847,5.362,1925,5.362]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[0,3.593,5,2.213,11,1.859,20,2.513,21,2.475,28,2.249,32,2.465,38,0.037,57,1.36,74,0.963,115,0.379,125,2.375,282,1.236,432,2.964,476,2.867,481,3.21,609,2.824,645,3.62,729,1.602,752,1.295,779,3.476,884,4.764,885,3.076,1001,2.178,1157,3.733,1314,4.145,1322,3.14,1335,3.909,1640,3.593,1641,3.593,1860,3.733,1920,4.145,2079,4.502]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[73,1.252,125,2.267,2080,6.842]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[125,2.025,1596,7.501,2080,6.11]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[11,3.03,19,2.666,28,2.955,38,0.087,57,1.13,66,1.19,73,0.594,74,0.527,79,1.808,115,0.504,120,0.961,121,0.559,125,1.076,130,4.435,191,0.509,192,1.068,193,1.51,254,2.219,261,2.028,283,2.067,290,1.454,291,1.64,335,0.533,375,1.293,527,2.666,606,2.219,641,1.988,645,1.64,666,1.117,812,3.349,860,2.42,1324,0.551,1863,3.247,1970,3.442,2080,8.392]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[804,0.471]],["title//docs/applications/social-networking/dolphin/",[2081,8.385]],["keywords//docs/applications/social-networking/dolphin/",[2081,6.703,2082,6.16,2083,7.106]],["toc//docs/applications/social-networking/dolphin/",[32,1.476,38,0.09,73,0.785,111,1.204,115,0.406,121,0.739,122,1.488,180,3.525,193,2.228,196,2.211,283,1.727,290,1.921,308,2.006,331,1.712,375,1.08,641,2.628,645,2.168,666,1.476,707,3.055,729,1.759,767,3.378,870,3.61,903,3.945,933,4.528,2081,8.952,2084,4.943]],["deprecated//docs/applications/social-networking/dolphin/",[566,0.702,801,0.642,804,0.086,2083,2.161,2085,0.88,2086,0.88,2087,0.88]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[21,1.995,74,0.938,111,1.621,341,3.147,1099,4.055]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[111,1.12,375,1.005,445,3.448,1099,2.803,1814,2.4,2088,4.599,2089,4.599,2090,4.599,2091,4.599,2092,4.599]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[21,3.008,66,1.564,87,3.208,111,2.444,283,2.715,341,5.254,375,1.699,445,5.827,2093,7.771]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[38,0.055,51,2.074,73,1.057,2094,5.778,2095,6.126]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2094,6.11,2096,7.037,2097,7.037,2098,7.037]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[11,3.539,38,0.071,115,0.475,290,3.332,291,2.696,752,1.769,2094,10.734,2095,5.66,2099,10.676,2100,6.148]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[175,3.666,612,3.227,860,4.67,915,5.033]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[175,3.922,612,3.452,860,4.997]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[11,2.538,20,1.872,58,3.124,66,1.237,175,5.908,178,3.856,184,4.49,299,4.384,354,2.25,494,5.098,606,3.648,660,4.384,860,3.979,861,5.023,1080,5.66,1096,4.49,1727,5.66,2101,5.338,2102,5.098]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[175,3.666,427,4.082,860,4.67,1754,5.571]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[175,3.922,1496,5.788,2103,7.72]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[20,3.033,28,3.126,66,1.746,115,0.347,175,5.465,178,3.924,291,2.744,354,3.176,479,4.05,606,5.911,860,4.05,861,3.667,1096,4.569,2101,7.534]],["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/",[287,0.786,1001,3.491,1682,3.106,1777,3.698]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[287,0.841,1001,3.735,1777,3.956]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[5,2.97,11,2.495,20,1.84,32,1.805,38,0.05,86,2.012,122,1.819,154,3.735,287,1.065,317,4.309,354,2.212,476,3.849,538,3.79,705,3.978,945,5.011,984,3.097,1001,5.126,1156,2.97,1157,5.011,2104,2.685,2105,5.011]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[804,0.471]],["title//docs/troubleshooting/rescue-and-rebuild/",[1096,6.338,2106,7.196]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1096,6.243,2106,7.088]],["toc//docs/troubleshooting/rescue-and-rebuild/",[11,3.299,20,1.695,38,0.046,57,1.682,67,2.396,79,1.701,156,3.115,175,2.828,178,5.011,182,4.065,282,2.193,331,1.928,393,3.545,481,3.969,602,3.732,606,3.303,612,2.49,915,3.882,918,2.96,984,2.853,1096,6.826,1532,5.124,2106,4.616,2107,4.833,2108,5.124,2109,5.567]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[20,2.399,73,1.252,1496,5.908]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2110,7.72,2111,7.72,2112,7.72]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[20,2.302,28,2.578,54,3.34,66,1.522,79,1.577,86,1.718,90,3.189,115,0.546,121,0.771,132,2.919,152,3.062,175,4.548,178,3.236,201,3.679,269,3.144,354,1.889,374,3.102,479,3.34,538,3.236,592,3.024,602,3.459,606,4.488,860,3.34,939,3.869,964,4.75,1000,3.526,1096,3.768,1307,4.75]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[804,0.471]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[115,0.437,175,4.003,479,5.1]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[175,4.343,2113,8.548]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[11,1.985,33,2.274,38,0.04,51,1.499,66,1.728,74,1.012,115,0.593,175,5.627,211,2.557,340,4.316,432,3.166,479,6.919,535,4.175,609,3.016,871,3.605,938,3.987,961,3.987,1053,3.512,1900,4.427,2114,4.427,2115,4.809]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[992,6.642,1003,5.27,1004,5.983,1005,5.41]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1003,4.368,1004,4.959,1005,4.484,1792,5.193,1793,5.193,2116,5.981]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[32,1.869,69,5.188,86,2.083,335,0.892,340,3.762,382,2.875,427,3.54,577,4.461,608,2.432,1003,6.337,1004,5.188,1005,6.506,1090,5.433,1789,5.76,1791,4.83,1792,5.433,1793,7.534,1794,5.188,2117,6.257,2118,6.257,2119,6.257]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[804,0.471]],["title//docs/troubleshooting/troubleshooting/",[753,4.709]],["keywords//docs/troubleshooting/troubleshooting/",[753,4.669]],["toc//docs/troubleshooting/troubleshooting/",[20,2.893,21,1.564,28,1.597,54,2.07,67,1.376,73,0.508,74,0.451,79,1.595,87,2.154,88,1.459,92,1.976,102,1.501,108,2.144,110,2.28,111,0.779,115,0.177,120,0.822,152,1.898,175,2.65,192,0.913,233,1.625,259,2.23,283,1.117,297,3.02,309,3.638,329,0.875,331,1.806,335,0.456,356,1.734,393,2.037,408,2.944,427,1.809,443,1.949,444,1.127,589,2.335,592,1.874,612,1.43,619,1.336,641,1.7,645,1.403,880,2.28,919,2.349,1027,2.552,1369,2.777,1424,2.777,1693,4.163,1788,2.469,1849,2.777,2120,3.198,2121,3.198,2122,2.777,2123,3.198,2124,3.198,2125,3.198,2126,3.198,2127,3.198,2128,3.198,2129,3.198,2130,2.944,2131,3.198,2132,3.198,2133,3.198,2134,3.198]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[427,4.909,919,3.907]],["keywords//docs/platform/accounts-and-passwords/",[21,2.11,427,3.981,911,5.14,919,3.168]],["toc//docs/platform/accounts-and-passwords/",[20,2.327,21,2.292,23,2.327,32,1.564,93,2.297,121,0.782,152,4.536,283,3.154,335,1.09,340,3.148,393,4.869,641,2.784,729,2.72,917,4.724,918,2.784,919,4.469,933,4.724,1027,4.179,1939,6.338,1983,3.824,2107,4.547]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[422,4.636]],["keywords//docs/platform/support/",[422,3.379,2135,7.037,2136,7.037,2137,7.037]],["toc//docs/platform/support/",[20,2.797,255,7.092,422,4.41,666,2.744,1939,7.617,2138,9.186]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[20,1.754,74,0.812,86,1.918,91,2.576,156,3.222,262,1.403,1524,4.107]],["keywords//docs/platform/linode-backup-service/",[2139,4.881,2140,4.881,2141,4.881,2142,4.881,2143,4.881,2144,4.881,2145,4.881,2146,4.881,2147,4.881]],["toc//docs/platform/linode-backup-service/",[20,2.796,21,1.618,24,4.686,28,2.696,86,2.601,156,6.428,182,6.707,270,1.966,342,3.848,356,2.926,382,2.48,384,3.335,468,4.968,532,4.475,573,3.941,606,3.202,721,6.784,1056,3.941,1700,4.475,1794,4.475,2148,5.396]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[120,2.23,233,4.409]],["keywords//docs/websites/hosting-a-website/",[233,3.575,1642,5.616,1643,6.11,1662,6.11]],["toc//docs/websites/hosting-a-website/",[20,2.615,38,0.071,66,0.968,73,0.764,79,1.47,87,1.985,111,2.092,115,0.267,120,1.236,121,0.718,134,2.225,136,3.223,139,1.458,191,0.977,192,1.373,193,2.192,233,2.443,295,5.869,329,1.315,375,1.569,443,2.93,444,2.531,534,7.906,572,3.166,642,2.309,660,3.429]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[73,1.379,262,2.114]],["keywords//docs/security/securing-your-server/",[262,2.048,268,2.871,612,2.675,2149,5.981,2150,5.981]],["toc//docs/security/securing-your-server/",[23,1.927,32,1.983,66,0.872,74,0.611,86,3.009,87,1.79,93,1.902,99,1.225,115,0.24,128,0.779,183,1.993,254,2.573,262,1.056,268,2.082,277,1.822,279,2.284,283,1.515,287,0.472,331,1.502,340,3.991,342,3.092,349,3.092,427,2.453,516,2.242,526,3.596,608,1.686,612,3.607,619,1.811,913,2.855,955,3.024,1111,1.402,1325,2.855,1395,2.72,1524,3.092,1655,3.992,1940,3.765,2000,3.024,2151,4.336,2152,3.992,2153,4.336,2154,5.504]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[73,1.057,121,0.994,122,2.003,722,2.937,1483,4.113]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[722,3.408,1483,4.771,1865,7.106]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[38,0.087,73,1.329,111,2.039,115,0.638,120,1.527,121,1.25,122,1.788,191,0.808,192,1.697,193,1.516,329,1.625,357,1.452,375,2.117,1866,5.158]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[804,0.471]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[73,0.981,125,1.776,287,0.673,2155,4.403,2156,4.403,2157,4.307]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[125,1.72,287,0.652,2155,4.264,2157,4.171,2158,5.981,2159,5.506]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[38,0.062,115,0.64,132,4.211,133,4.12,192,2.126,261,4.036,335,1.061,1324,1.096,2155,8.235]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[191,1.181,2160,7.535]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[191,0.957,2160,6.11,2161,7.037,2162,7.037]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[38,0.058,115,0.388,152,4.155,277,2.941,592,4.103,666,2.091,1077,5.805,2160,8.133,2163,7.001,2164,7.001,2165,7.001,2166,7.001,2167,7.001,2168,7.001,2169,7.001,2170,7.001,2171,7.001]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[115,0.437,191,1.072,2172,7.254]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[191,1.163,2173,8.548]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[23,3.378,38,0.063,59,4.456,93,3.335,99,2.148,121,1.136,139,2.306,269,4.634,914,6.068,2172,10.122,2174,7.604,2175,7.604]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[128,1.195,729,2.368,991,2.796,1978,3.949,2176,3.195]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[1981,4.418,1982,4.848,2177,6.466,2178,6.466,2179,5.953]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[38,0.053,115,0.353,121,0.952,270,2.32,331,2.206,335,0.908,357,1.557,644,2.377,739,3.295,758,3.882,759,3.265,898,4.542,919,2.868,949,4.057,1110,3.995,1324,0.938,1780,3.937,1978,5.213,1983,4.652,2102,7.284]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[804,0.471]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[51,1.925,74,0.87,318,2.625,567,4.307,568,4.927,920,4.63]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[568,6.821,920,6.409]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[66,1.459,77,1.727,79,3.133,106,5.701,115,0.27,121,0.728,122,1.467,156,2.728,198,3.155,211,2.592,318,2.073,339,4.36,567,6.688,604,3.655,609,3.058,652,5.171,920,3.655,947,6.296,984,2.498,1334,4.488,1450,6.91,2180,4.875,2181,4.875,2182,4.233,2183,4.875]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[73,1.057,287,0.725,1149,3.381,2105,5.518,2184,5.778]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[32,1.588,38,0.064,57,1.606,73,1.228,89,1.778,111,1.295,115,0.295,120,1.366,121,0.794,125,1.529,192,1.518,193,1.357,262,1.295,282,1.459,287,0.579,291,2.331,329,1.454,330,3.44,335,0.758,352,3.255,354,1.946,357,1.299,375,1.162,752,1.529,812,2.426,1006,2.004,1140,2.045,1324,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[804,0.471]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[86,2.216,121,0.994,122,2.003,444,2.346,1099,4.055]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[444,3.014,1099,5.209]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[21,2.555,74,1.201,362,5.427,443,5.193,444,3.004,961,7.066,1103,9.792,1922,7.399]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1133,6.507,2185,7.196]],["keywords//docs/websites/cms/kloxo-guides/",[1099,4.289,2185,5.835,2186,5.018,2187,5.018]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[73,1.146,99,2.038,991,3.031,1149,3.666]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[32,1.663,38,0.066,57,1.682,73,1.269,89,1.825,111,1.356,115,0.309,120,1.43,121,0.832,125,1.601,192,1.59,193,1.421,262,1.356,282,1.528,291,2.441,329,1.522,352,3.341,354,2.038,357,1.361,375,1.217,752,1.601,812,2.54,1006,2.098,1140,2.141,1667,4.174]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[66,1.585,427,4.458,2188,6.534]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[427,4.367,2188,6.401,2189,7.106]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[57,2.989,66,2.343,283,3.456,335,1.084,427,5.596,1324,1.12,2189,9.106]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[804,0.471]],["title//docs/websites/cms/directadmin/",[2188,8.008]],["keywords//docs/websites/cms/directadmin/",[2188,7.94]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[73,1.057,287,0.725,722,2.937,2105,5.518,2184,5.778]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1631,4.992,2076,4.992,2190,6.466,2191,6.466,2192,6.466]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[38,0.087,73,1.329,111,2.039,115,0.615,120,1.527,121,1.25,122,1.788,134,2.749,191,0.808,192,1.697,193,1.516,329,1.625,357,1.452,375,2.117,642,2.852]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[804,0.471]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[38,0.06,99,2.038,2185,5.983,2193,2.521]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1099,4.289,2185,5.835,2186,5.018,2187,5.018]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[38,0.083,374,5.99,616,5.575]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[804,0.471]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[287,0.786,1001,3.491,2105,5.983,2184,6.265]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2194,7.037,2195,7.037,2196,5.835,2197,5.835]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[354,3.647,1001,5.657]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[804,0.471]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[38,0.051,74,0.87,644,2.305,739,2.316,1099,3.763,1110,3.873]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[592,4.524,644,2.881,1099,4.704]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[38,0.068,66,1.636,75,1.899,76,1.911,147,4.322,644,3.034,739,3.873,753,3.963,759,4.166,1110,5.098]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[931,5.282,1111,2.547,2198,6.534]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[185,3.471,742,4.51,931,4.335,932,5.362,1111,2.091]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[38,0.076,121,1.373,193,2.345,375,2.008,931,6.158,1258,6.55]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[804,0.471]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[99,2.226,931,5.282,991,3.31]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[99,1.826,185,3.471,742,4.51,931,4.335,932,5.362]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[38,0.076,121,1.373,193,2.345,375,2.008,931,6.158,1258,6.55]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[128,1.296,931,4.837,991,3.031,2176,3.464]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[128,1.074,185,3.211,742,4.171,931,4.009,932,4.959,2176,2.871]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[38,0.076,121,1.373,193,2.345,375,2.008,931,6.158,1258,6.55]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[73,1.146,722,3.185,1111,2.333,2198,5.983]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1765,5.14,1766,5.276,2199,7.037,2200,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[38,0.085,73,1.284,111,1.969,115,0.603,120,1.453,121,1.207,122,1.702,134,2.617,191,1.099,192,1.615,193,1.443,329,1.547,357,1.382,375,2.248,491,3.661,642,2.715]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[804,0.471]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[99,2.226,722,3.478,991,3.31]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[99,1.571,191,0.757,193,1.42,375,1.216,722,2.456,993,4.439,1273,5.121]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[38,0.087,66,1.381,75,1.603,76,1.614,111,1.672,115,0.62,120,1.764,191,1.258,192,1.96,193,1.752,329,1.877,375,2.021]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1131,5.282,1133,5.908,1490,6.534]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[453,6.821,1131,5.73]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[16,3.848,89,1.054,115,0.299,121,0.806,132,5.196,145,4.686,148,4.475,152,3.202,178,3.385,183,2.48,191,0.734,264,3.941,297,3.124,317,3.848,485,3.289,587,3.202,592,3.162,641,2.869,739,2.024,802,3.941,960,4.968,984,2.766,1066,3.244,1131,5.238,2201,5.396,2202,5.396,2203,5.396,2204,5.396,2205,5.396,2206,4.968]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[128,1.035,375,1.259,729,2.049,991,2.42,1023,2.16,1557,3.033,2176,2.765]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[128,0.999,729,1.979,1557,2.93,2176,2.671,2179,5.121,2207,5.563,2208,5.563]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[38,0.041,57,1.473,66,0.981,74,0.687,115,0.532,121,1.294,122,2.183,139,2.199,195,1.802,283,2.534,329,1.333,335,0.695,341,3.43,357,1.192,375,1.893,382,2.24,644,1.82,645,2.138,730,2.06,739,1.829,984,2.498,1023,3.248,1324,0.718,1557,2.567,1561,2.971,1562,3.56,2209,3.331]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[99,1.744,375,1.35,729,2.197,1023,2.316,1557,3.252,2193,2.157]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[729,2.301,1560,4.61,2210,6.466,2211,6.466,2212,6.466]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[38,0.048,57,1.737,115,0.527,121,1.221,122,2.46,139,2.886,195,2.124,283,2.856,329,1.572,341,3.866,375,1.787,382,2.641,645,2.521,730,2.429,984,2.946,1023,3.066,1557,3.027,1561,3.503,1562,4.198]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[73,1.146,1111,2.333,1149,3.666,2198,5.983]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[32,1.689,38,0.078,57,1.709,73,1.284,89,1.578,111,1.378,115,0.523,120,1.453,121,0.845,125,1.627,192,1.615,193,1.443,262,1.969,329,1.547,335,0.806,357,1.382,375,1.236,572,3.724,752,1.627,1006,2.132,1140,2.176,1324,0.833,1497,3.547]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[73,1.057,128,1.195,991,2.796,1149,3.381,2176,3.195]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[39,2.076,51,1.621,89,1.015,193,1.327,1149,2.642,1666,2.441,1801,4.311,1802,2.555]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[32,1.588,38,0.064,57,1.606,73,1.228,89,1.778,111,1.295,115,0.295,120,1.366,121,0.794,125,1.529,128,0.955,192,1.518,193,1.357,262,1.295,282,1.459,291,2.331,329,1.454,335,0.758,352,3.255,354,1.946,357,1.299,375,1.162,752,1.529,812,2.426,981,4.615,1006,2.004,1140,2.045,1324,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[73,0.915,287,0.627,730,2.434,1024,3.375,1961,3.418,2156,4.107,2157,4.017]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1344,3.489,1961,3.301,1963,4.171,1964,4.171,2213,5.563,2214,4.83,2215,4.613]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[86,2.646,115,0.564,121,1.187,139,2.41,142,4.225,335,1.133,357,1.942,730,4.301,1324,1.17,1961,4.715]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[73,1.057,287,0.725,722,2.937,2156,4.745,2157,4.641]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1631,4.992,2076,4.992,2159,5.953,2216,6.466,2217,6.466]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[38,0.087,73,1.329,111,2.039,115,0.615,120,1.527,121,1.25,122,1.788,134,2.749,191,0.808,192,1.697,193,1.516,329,1.625,357,1.452,375,2.117,642,2.852]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[86,1.797,128,0.969,438,3.385,444,1.903,991,2.267,2046,3.848,2047,2.956,2176,2.591]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[128,1.162,444,2.28,619,2.701,2047,3.542,2060,3.471]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[86,1.797,287,0.588,438,3.385,444,1.903,2046,3.848,2047,2.956,2156,3.848,2157,3.764]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[287,0.704,444,2.28,619,2.701,2047,3.542,2060,3.471]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[74,0.812,142,3.062,444,2.031,1111,1.862,2056,3.062,2057,3.935,2198,4.776]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[444,2.109,794,3.751,2056,3.18,2059,4.368,2060,3.211,2218,5.193]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[38,0.055,74,0.931,115,0.568,121,0.987,261,3.583,282,1.814,335,0.942,357,1.615,426,3.125,444,2.33,474,3.697,608,2.569,1324,0.973,2056,6.125,2060,3.548]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[74,0.76,142,2.869,287,0.588,444,1.903,2056,2.869,2057,3.687,2156,3.848,2157,3.764]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[444,2.109,794,3.751,2056,3.18,2058,4.772,2059,4.368,2060,3.211]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[21,1.851,287,0.673,330,3.997,669,3.763,2156,4.403,2157,4.307]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[669,3.94,2219,6.466,2220,5.16,2221,5.16,2222,5.16]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[32,1.612,38,0.065,57,1.63,66,1.086,86,1.797,89,1.054,111,1.315,115,0.558,121,0.806,125,1.552,137,2.294,139,1.637,191,0.734,262,1.315,277,2.267,335,0.769,343,3.764,357,1.319,669,5.597,670,3.053,729,1.92,752,1.552,1006,2.034,1109,3.764,1168,2.869,1324,0.795,2223,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[21,1.851,128,1.109,330,3.997,669,3.763,991,2.594,2176,2.964]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[669,3.94,2220,5.16,2221,5.16,2222,5.16,2224,6.466]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[32,1.612,38,0.065,57,1.63,66,1.086,86,1.797,89,1.054,111,1.315,115,0.558,121,0.806,125,1.552,137,2.294,139,1.637,191,0.734,262,1.315,277,2.267,335,0.769,343,3.764,357,1.319,669,5.597,670,3.053,729,1.92,752,1.552,1006,2.034,1109,3.764,1168,2.869,1324,0.795,2223,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[89,1.206,128,1.109,193,1.576,991,2.594,1140,2.375,2176,2.964]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[89,1.374,1499,4.124,1500,4.718,2225,7.037]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[11,2.373,38,0.048,57,1.737,61,5.382,66,1.156,86,1.914,102,2.698,113,4.346,115,0.527,120,1.477,121,0.859,139,1.743,193,1.467,195,2.124,262,1.4,270,2.094,329,1.572,335,0.82,357,1.405,572,3.784,1140,2.211,1324,0.846,1395,3.605,1497,3.605,1501,3.552]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[89,1.206,193,1.576,287,0.673,1140,2.375,2156,4.403,2157,4.307]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[89,1.374,1499,4.124,1500,4.718,2226,7.037]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,2.373,38,0.048,57,1.737,61,5.382,66,1.156,86,1.914,102,2.698,113,4.346,115,0.527,120,1.477,121,0.859,139,1.743,193,1.467,195,2.124,262,1.4,270,2.094,329,1.572,335,0.82,357,1.405,572,3.784,1140,2.211,1324,0.846,1395,3.605,1497,3.605,1501,3.552]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[20,2.399,852,5.755,1067,5.908]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2227,8.548,2228,8.548]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[88,3.397,115,0.413,152,5.789,418,4.901,462,5.747,609,4.669,1066,4.475,1067,8.99,2229,7.444,2230,7.444]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[89,1.206,287,0.673,1140,2.375,1802,3.035,2156,4.403,2157,4.307]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[1987,4.992,2231,6.466,2232,5.953,2233,6.466,2234,6.466]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[38,0.049,57,1.795,61,5.51,66,1.195,102,2.789,113,4.449,115,0.583,120,1.527,121,0.888,139,1.802,195,2.196,270,2.164,329,1.625,335,0.847,357,1.452,444,2.095,498,3.159,1140,2.285,1324,0.875,1395,3.726,1501,3.672,1802,2.92]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[804,0.471]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[20,2.026,121,0.994,122,2.003,1065,3.808,1067,4.99]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[619,2.939,1065,4.027,1067,5.276,2235,7.037]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[51,2.92,75,1.635,76,1.646,99,2.646,115,0.388,128,1.258,131,2.924,287,0.763,384,4.327,616,3.917,724,3.497,991,2.941,1111,2.263,1288,3.653,1483,4.327,2130,6.445]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[287,0.786,1001,3.491,2156,5.145,2157,5.033]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2196,5.835,2197,5.835,2236,7.037,2237,7.037]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[354,3.647,1001,5.657]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[804,0.471]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[73,0.915,104,2.978,128,1.035,192,1.645,991,2.42,1972,3.188,2176,2.765]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[191,0.957,1472,5.616,1972,3.895,1974,5.018]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[128,1.195,191,0.905,554,4.113,991,2.796,2176,3.195]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.082,191,1.05,1280,5.175]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[38,0.054,77,2.298,115,0.634,117,4.625,118,4.524,121,0.969,191,0.882,238,2.882,335,0.925,337,4.737,357,1.585,766,5.598,1275,2.981,1281,3.756,1324,0.955]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[191,0.982,554,4.459,1111,2.333,2238,3.952]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.082,191,1.05,1280,5.175]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[38,0.054,77,2.298,115,0.634,117,4.625,118,4.524,121,0.969,191,0.882,238,2.882,335,0.925,337,4.737,357,1.585,766,5.598,1275,2.981,1281,3.756,1324,0.955]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[804,0.471]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[191,0.905,287,0.725,554,4.113,2104,2.957,2239,2.864]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.082,191,1.05,1280,5.175]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[38,0.054,77,2.298,115,0.634,117,4.625,118,4.524,121,0.969,191,0.882,238,2.882,335,0.925,337,4.737,357,1.585,766,5.598,1275,2.981,1281,3.756,1324,0.955]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/platform/stackscripts/",[165,4.676,352,2.817,493,6.534]],["keywords//docs/platform/stackscripts/",[165,3.837,188,3.996,213,4.848,2240,6.466,2241,6.466]],["toc//docs/platform/stackscripts/",[20,1.643,28,2.696,33,2.552,59,3.162,64,3.553,66,1.086,74,1.294,200,3.162,241,3.764,271,2.367,352,2.793,473,4.686,474,3.019,493,9.755,752,1.552,859,3.437,2021,3.618,2242,5.396,2243,4.968,2244,5.396,2245,5.396,2246,5.396,2247,5.396]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[128,1.109,991,2.594,1965,4.307,1966,4.219,1967,3.763,2176,2.964]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[193,1.796,1666,3.304,1967,4.289,1968,5.14]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[32,2.373,115,0.44,125,2.286,262,1.936,290,3.089,335,1.133,527,5.666,666,2.373,752,2.286,1006,2.995,1324,1.17,1967,4.842]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1111,2.151,1965,4.641,1966,4.547,1967,4.055,2238,3.645]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[193,1.796,1666,3.304,1967,4.289,1968,5.14]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[32,2.373,115,0.44,125,2.286,262,1.936,290,3.089,335,1.133,527,5.666,666,2.373,752,2.286,1006,2.995,1324,1.17,1967,4.842]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[191,0.905,554,4.113,1111,2.151,1275,3.058,2238,3.645]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.809,191,0.957,554,4.349,1275,3.234]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[38,0.079,82,3.69,115,0.526,121,1.067,191,1.292,238,3.173,335,1.018,352,2.553,357,1.746,766,3.661,1275,4.363,1324,1.052]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[128,1.296,991,3.031,2019,3.952,2176,3.464]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[50,2.665,128,0.934,415,3.126,1802,2.555,2013,3.126,2019,2.848,2248,5.2,2249,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[38,0.093,73,1.091,77,2.432,89,1.34,115,0.579,191,0.934,192,1.96,282,1.884,335,0.979,684,3.975,1324,1.011,1601,4.243,2019,5.064]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[287,0.786,2019,3.952,2104,3.206,2239,3.106]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[50,2.851,287,0.606,415,3.344,1802,2.734,2013,3.344,2019,3.047,2239,2.394]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[38,0.093,73,1.091,77,2.432,89,1.34,115,0.579,191,0.934,192,1.96,282,1.884,335,0.979,684,3.975,1324,1.011,1601,4.243,2019,5.064]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[287,0.786,2019,3.952,2250,3.518,2251,3.491]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[50,2.851,287,0.606,415,3.344,1802,2.734,2013,3.344,2019,3.047,2239,2.394]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[38,0.093,73,1.091,77,2.432,89,1.34,115,0.579,191,0.934,192,1.96,282,1.884,335,0.979,684,3.975,1324,1.011,1601,4.243,2019,5.064]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[21,1.727,128,1.035,415,3.463,673,2.831,991,2.42,2176,2.765,2252,4.206]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[415,4.231,637,4.231,1142,4.633,2253,5.835]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[38,0.058,115,0.519,121,1.046,191,0.952,249,4.693,282,1.921,335,0.998,354,2.563,357,1.711,498,3.722,673,3.441,762,4.992,1324,1.031,1809,5.113,2252,7.71]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[21,1.851,415,3.712,673,3.035,1111,1.996,2238,3.382,2252,4.51]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[415,4.231,637,4.231,1142,4.633,2253,5.835]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[38,0.058,115,0.519,121,1.046,191,0.952,249,4.693,282,1.921,335,0.998,354,2.563,357,1.711,498,3.722,673,3.441,762,4.992,1324,1.031,1809,5.113,2252,7.71]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[804,0.471]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[21,1.727,287,0.627,415,3.463,673,2.831,2250,2.808,2251,2.786,2252,4.206]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[415,4.231,637,4.231,1142,4.633,2253,5.835]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[38,0.058,115,0.519,121,1.046,191,0.952,249,4.693,282,1.921,335,0.998,354,2.563,357,1.711,498,3.722,673,3.441,762,4.992,1324,1.031,1809,5.113,2252,7.71]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[21,1.727,99,1.627,200,3.375,2193,2.012,2254,4.107,2255,4.446,2256,5.001]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[200,3.789,2254,4.61,2257,5.953,2258,5.614,2259,5.16]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[32,2.428,38,0.086,115,0.451,125,2.339,262,1.98,666,2.428,752,2.339,1006,3.064,2254,7.363]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[804,0.471]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[21,1.727,200,3.375,1111,1.862,2238,3.155,2254,4.107,2255,4.446,2256,5.001]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[200,3.789,2254,4.61,2257,5.953,2258,5.614,2259,5.16]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[32,2.321,38,0.083,115,0.431,125,2.236,262,1.893,335,1.108,666,2.321,752,2.236,1006,2.929,1324,1.144,2254,7.153]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[21,1.618,128,0.969,475,3.244,729,1.92,991,2.267,1726,3.687,2044,3.289,2176,2.591]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[38,0.059,115,0.591,121,1.067,335,1.018,339,4.294,357,1.746,416,4.982,573,5.216,576,4.414,730,3.019,1324,1.052,2044,6.498,2260,6.202]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[20,1.88,21,1.851,128,1.109,991,2.594,2176,2.964,2261,3.619]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[804,0.471]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[20,2.026,21,1.995,1111,2.151,2238,3.645,2261,3.9]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[28,2.696,32,1.612,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,354,1.975,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[125,1.776,282,1.695,645,2.708,1111,1.996,1445,3.533,2238,3.382]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[125,1.657,282,1.581,287,0.627,645,2.526,1445,3.296,2250,2.808,2251,2.786]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[73,0.981,125,1.776,128,1.109,991,2.594,2155,4.403,2176,2.964]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[125,2.459,2155,6.095]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[38,0.062,115,0.64,132,4.211,133,4.12,192,2.126,261,4.036,335,1.061,1324,1.096,2155,8.235]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[804,0.471]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[211,3.062,287,0.627,906,3.56,2250,2.808,2251,2.786,2271,4.596,2272,4.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1034,2.974,2273,4.881,2274,4.881,2275,4.881,2276,4.238,2277,3.895,2278,3.895,2279,3.768,2280,3.895]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[21,1.781,32,1.774,38,0.07,67,2.557,87,2.453,115,0.329,121,0.888,183,2.73,195,2.196,221,2.73,318,2.526,335,0.847,339,3.572,357,1.452,595,4.236,619,2.481,752,1.709,801,4.339,889,4.236,906,6.5,1324,0.875,2281,6.461]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[128,1.296,791,3.836,991,3.031,2176,3.464]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[111,1.714,791,3.742,858,3.545,2004,5.018]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[128,1.109,191,0.84,412,3.222,991,2.594,1168,3.283,2176,2.964]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1169,4.231,1485,4.349,1886,5.276,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[38,0.065,104,4.018,115,0.431,119,4.499,121,1.161,191,1.057,238,3.453,352,2.778,357,1.899,382,3.571,670,5.676,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[191,0.84,263,3.137,644,2.305,739,2.316,1111,1.996,2238,3.382]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[672,3.516,1675,4.809,1677,6.11,2283,5.835]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[804,0.471]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[128,1.109,262,1.504,693,3.111,859,3.933,991,2.594,2176,2.964]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2284,7.72,2285,7.72,2286,7.72]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[30,4.811,38,0.038,67,3.58,72,2.278,74,0.643,115,0.382,126,2.189,183,4.262,241,3.181,262,1.68,267,2.86,329,1.247,335,0.65,374,2.742,407,4.302,485,4.203,619,2.881,693,3.475,724,3.446,739,2.587,958,3.252,959,3.252,966,3.252,1063,4.465,1065,2.609,1294,3.252,1324,0.671,1890,3.33,1891,3.419]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[804,0.471]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[89,1.299,1111,2.151,2238,3.645,2287,4.745,2288,5.518]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[200,3.789,352,2.312,412,3.374,1666,3.036,2287,4.61]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[38,0.077,66,1.381,73,1.091,77,2.432,82,3.593,89,1.34,115,0.381,121,1.026,192,1.96,335,0.979,352,2.454,357,1.678,752,1.975,1324,1.011,2287,6.592,2289,5.961]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[804,0.471]],["title//docs/websites/wikis/twiki-on-centos-5/",[99,2.226,2012,4.509,2193,2.753]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-centos-5/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[804,0.471]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[128,1.296,991,3.031,2012,4.129,2176,3.464]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1111,2.547,2012,4.509,2238,4.316]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[804,0.471]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[74,0.938,183,3.058,279,3.505,612,2.976,1063,4.307]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[407,3.092,612,2.675,956,5.506,1065,3.422,1087,5.506,1890,4.368]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[51,1.852,58,3.018,67,3.602,73,1.329,126,4.018,142,3.159,168,3.672,183,4.833,279,3.129,282,2.297,612,2.657,660,4.236,724,4.18,1070,6.275,1501,3.672,2041,4.339,2290,8.369]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[51,1.925,74,0.87,111,1.504,375,1.35,1032,3.348,1288,3.222]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1819,5.96,1877,6.703,2291,7.72]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[38,0.061,74,1.027,115,0.533,278,4.506,282,2.001,335,1.039,375,2.504,917,4.506,918,3.876,919,3.282,1324,1.073,1658,5.466]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[804,0.471]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[191,0.905,287,0.725,554,4.113,2250,3.245,2251,3.219]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.082,191,1.05,1280,5.175]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[38,0.054,77,2.298,115,0.634,117,4.625,118,4.524,121,0.969,191,0.882,238,2.882,335,0.925,337,4.737,357,1.585,766,5.598,1275,2.981,1281,3.756,1324,0.955]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[86,1.918,128,1.035,991,2.42,1243,3.296,1950,3.418,1951,3.728,2176,2.765]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1952,3.565,1953,3.214,1955,3.159,1956,3.159,1995,3.214,2292,4.881,2293,4.881,2294,4.047,2295,4.881]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[38,0.083,115,0.431,121,1.499,268,3.731,335,1.108,357,1.899,439,4.736,666,2.321,1324,1.144,1950,5.954]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[73,0.915,128,1.035,191,0.784,192,1.645,263,2.926,991,2.42,2176,2.765]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[647,5.16,1472,5.16,2296,6.466,2297,6.466,2298,6.466]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[38,0.081,75,1.411,76,1.42,115,0.469,120,1.553,134,2.797,191,1.33,196,3.788,244,3.419,263,3.07,277,3.558,308,2.453,329,1.653,335,0.862,422,2.901,642,2.901,1324,0.89,1452,4.215,2299,5.247]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[51,2.456,1288,4.111,2019,4.316]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[50,2.851,287,0.606,415,3.344,1802,2.734,2013,3.344,2019,3.047,2239,2.394]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[38,0.096,73,1.182,89,1.453,115,0.413,191,1.013,192,2.126,335,1.061,684,4.31,1324,1.096,1601,4.6,2019,5.344]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[38,0.048,73,0.915,287,0.627,1996,3.092,2070,3.375,2250,2.808,2251,2.786]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2300,5.506]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[73,1.057,128,1.195,722,2.937,991,2.796,2176,3.195]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1476,6.401,1870,6.703,2301,7.72]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[38,0.087,73,1.314,111,2.015,115,0.611,120,1.501,121,1.236,122,1.758,134,2.704,191,0.795,192,1.669,193,1.491,329,1.598,357,1.428,375,2.282,642,2.805]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[73,0.981,104,3.193,192,1.763,1111,1.996,1972,3.418,2238,3.382]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[191,0.957,1972,3.895,1974,5.018,2302,6.479]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[804,0.471]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[128,1.035,211,3.062,906,3.56,991,2.42,2176,2.765,2271,4.596,2272,4.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1034,2.974,2277,3.895,2278,3.895,2279,3.768,2280,3.895,2303,4.881,2304,4.881,2305,4.881,2306,4.493]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[21,1.781,32,1.774,38,0.07,67,2.557,87,2.453,115,0.329,121,0.888,183,2.73,195,2.196,221,2.73,318,2.526,335,0.847,339,3.572,357,1.452,595,4.236,619,2.481,752,1.709,801,4.339,889,4.236,906,6.5,1324,0.875,2281,6.461]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[74,0.715,91,2.27,92,3.137,128,0.912,134,2.349,991,2.133,2052,2.725,2053,3.62,2176,2.437]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[128,1.264,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[38,0.076,74,1.295,335,1.31,1324,1.353,2052,5.981]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[74,0.812,86,1.918,137,2.449,191,0.784,271,2.526,1111,1.862,2238,3.155]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[74,0.812,89,1.124,128,1.035,766,2.952,991,2.42,1276,2.978,2176,2.765]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[38,0.059,73,1.135,82,2.776,88,3.26,89,1.853,115,0.526,121,1.067,335,1.018,357,1.746,422,3.429,812,3.26,1276,5.514,1324,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[89,1.299,128,1.195,233,3.381,991,2.796,2176,3.195]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[89,1.168,128,1.074,144,2.748,672,2.988,2307,5.506,2308,5.981]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[21,1.781,32,1.774,33,2.81,38,0.08,57,1.795,66,1.195,89,2.053,121,0.888,125,1.709,128,1.067,262,1.447,290,2.309,291,2.606,308,2.411,335,0.847,357,1.452,666,1.774,752,1.709,812,2.711,1006,2.24,1324,0.875,1817,3.072]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[804,0.471]],["title//docs/databases/postgresql/debian-6-squeeze/",[74,0.812,111,1.403,116,2.526,128,1.035,991,2.42,1032,3.123,2176,2.765]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1034,4.289,1132,4.718,2309,7.037,2310,7.037]],["toc//docs/databases/postgresql/debian-6-squeeze/",[38,0.076,66,2.083,111,1.641,115,0.373,116,4.54,121,1.006,155,4.359,283,2.353,335,0.96,919,3.032,1035,3.853,1039,4.434,1324,0.992,2068,5.199,2069,5.199]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[128,1.195,191,0.905,991,2.796,1144,3.723,2176,3.195]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[667,3.639,2311,5.835,2312,6.479,2313,6.479]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[38,0.082,74,1.072,121,1.136,139,2.306,150,5.097,191,1.034,335,1.084,357,1.859,667,3.932,1144,5.535,1324,1.12,2314,5.701]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[128,1.195,191,0.905,554,4.113,2193,2.325,2315,2.671]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.082,191,1.05,1280,5.175]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[38,0.054,77,2.298,115,0.634,117,4.625,118,4.524,121,0.969,191,0.882,238,2.882,335,0.925,337,4.737,357,1.585,766,5.598,1275,2.981,1281,3.756,1324,0.955]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[804,0.471]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[77,2.04,128,1.035,692,4.318,729,2.049,991,2.42,1023,2.16,2176,2.765]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[516,3.343,729,2.301,1023,2.425,1066,3.887,2316,5.362]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,0.055,66,1.33,102,3.102,115,0.499,120,1.698,121,0.987,262,1.61,329,1.807,335,0.942,357,1.615,729,3.206,730,3.807,746,4.826,1023,3.379,1024,3.873,1324,0.973,2317,5.479]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[128,1.109,191,0.84,554,3.816,991,2.594,1275,2.838,2176,2.964]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[38,0.082,82,2.956,115,0.548,121,1.136,191,1.034,238,3.378,335,1.084,357,1.859,766,3.897,1275,4.546,1324,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[89,1.206,128,1.109,991,2.594,1140,2.375,1802,3.035,2176,2.964]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[1987,4.992,2232,5.953,2318,6.466,2319,6.466,2320,5.614]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[38,0.049,57,1.795,61,5.51,66,1.195,102,2.789,113,4.449,115,0.583,120,1.527,121,0.888,139,1.802,195,2.196,270,2.164,329,1.625,335,0.847,357,1.452,444,2.095,498,3.159,1140,2.285,1324,0.875,1395,3.726,1501,3.672,1802,2.92]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[804,0.471]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[128,0.969,282,1.481,283,1.885,427,3.053,1023,2.024,1557,2.842,2193,1.885,2315,2.166]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[729,2.504,1023,2.64,1557,3.706,2321,7.037]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[38,0.05,86,2.82,115,0.587,121,0.903,126,2.901,279,3.182,335,0.862,357,1.477,608,2.349,644,2.255,730,4.478,746,4.413,752,1.738,928,4.822,1023,2.267,1324,0.89,1557,3.182,2322,6.043,2323,6.043]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[191,0.84,287,0.673,412,3.222,1168,3.283,2250,3.011,2251,2.987]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1169,4.231,1485,4.349,1886,5.276,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[38,0.065,104,4.018,115,0.431,119,4.499,121,1.161,191,1.057,238,3.453,352,2.778,357,1.899,382,3.571,670,5.676,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[89,1.206,128,1.109,991,2.594,2176,2.964,2287,4.403,2288,5.12]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[200,3.789,352,2.312,412,3.374,1666,3.036,2287,4.61]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[38,0.077,66,1.381,73,1.091,77,2.432,82,3.593,89,1.34,115,0.381,121,1.026,192,1.96,335,0.979,352,2.454,357,1.678,752,1.975,1324,1.011,2287,6.592,2289,5.961]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[74,0.812,89,1.124,287,0.627,766,2.952,1276,2.978,2104,2.559,2239,2.479]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[38,0.058,73,1.488,82,2.721,88,3.195,89,1.829,115,0.519,121,1.046,335,0.998,357,1.711,422,3.361,812,3.195,1276,5.459,1324,1.031]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[128,1.296,991,3.031,1281,4.178,2176,3.464]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.809,1281,4.074,1666,3.304,2006,5.276]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[38,0.084,66,1.305,77,2.298,81,3.324,82,3.946,111,1.58,121,0.969,335,0.925,352,2.319,357,1.585,666,1.937,1281,6.627,1324,0.955,2007,5.176]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[804,0.471]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[128,1.035,729,2.049,991,3.439,1342,3.792,2176,2.765,2324,4.596]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1560,4.264,2325,5.981,2326,5.981,2327,5.506,2328,4.772,2329,4.772]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[32,2.223,38,0.081,57,2.249,77,2.637,115,0.413,125,2.141,262,1.813,282,2.043,335,1.061,666,2.223,752,2.141,1006,2.806,1324,1.096,1342,4.901]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[21,1.727,128,1.035,415,3.463,673,2.831,2193,2.012,2252,4.206,2315,2.312]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[415,4.231,637,4.231,1142,4.633,2253,5.835]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[38,0.058,115,0.519,121,1.046,191,0.952,249,4.693,282,1.921,335,0.998,354,2.563,357,1.711,498,3.722,673,3.441,762,4.992,1324,1.031,1809,5.113,2252,7.71]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[73,0.915,128,1.035,730,2.434,991,2.42,1024,3.375,1961,3.418,2176,2.765]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1344,3.489,1963,4.171,1964,4.171,2307,5.121,2330,5.563,2331,5.563,2332,5.121]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[38,0.062,57,2.249,86,2.478,115,0.541,121,1.112,139,2.258,142,3.958,195,2.751,335,1.061,357,1.819,730,4.123,1324,1.096,1961,4.417]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[804,0.471]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[287,0.786,2012,4.129,2104,3.206,2239,3.106]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[287,0.786,2012,4.129,2250,3.518,2251,3.491]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[74,0.76,128,0.969,142,2.869,444,1.903,991,2.267,2056,2.869,2057,3.687,2176,2.591]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[128,0.934,444,1.833,794,3.261,2056,2.764,2060,2.791,2333,5.2,2334,5.2,2335,5.2]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[89,1.299,233,3.381,287,0.725,2250,3.245,2251,3.219]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[89,1.168,144,2.748,287,0.652,672,2.988,2336,5.193,2337,4.959]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[21,1.781,32,1.774,33,2.81,38,0.08,57,1.795,66,1.195,89,2.053,121,0.888,125,1.709,262,1.447,287,0.647,290,2.309,291,2.606,308,2.411,335,0.847,357,1.452,666,1.774,752,1.709,812,2.711,1006,2.24,1324,0.875,1817,3.072]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[128,1.296,991,3.031,1001,3.491,2176,3.464]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1912,6.479,1913,6.479,2176,3.379,2338,7.037]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[245,7.281,282,2.589,354,3.452,1001,5.476]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[51,2.074,89,1.299,1140,2.56,1288,3.472,1802,3.271]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1140,2.487,1989,4.51,2339,6.466,2340,5.614,2341,5.614]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[38,0.061,57,2.203,115,0.533,120,1.873,121,1.089,139,2.211,195,2.694,329,1.994,335,1.039,357,1.782,1140,3.702,1324,1.073,1525,5.324,1802,3.583]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[51,2.074,89,1.299,193,1.698,1140,2.56,1288,3.472]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1499,4.124,1500,4.718,2340,6.11,2341,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[38,0.066,115,0.44,120,2.042,121,1.187,139,2.41,193,2.028,329,2.173,335,1.133,357,1.942,752,2.286,1140,3.057,1324,1.17]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[74,0.812,142,3.062,444,2.031,1111,1.862,2056,3.062,2057,3.935,2238,3.155]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[444,2.109,794,3.751,2056,3.18,2059,4.368,2060,3.211,2218,5.193]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[38,0.055,74,0.931,115,0.568,121,0.987,261,3.583,282,1.814,335,0.942,357,1.615,426,3.125,444,2.33,474,3.697,608,2.569,1324,0.973,2056,6.125,2060,3.548]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[74,0.76,142,2.869,287,0.588,444,1.903,2056,2.869,2057,3.687,2250,2.631,2251,2.611]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[444,2.109,794,3.751,2056,3.18,2058,4.772,2059,4.368,2060,3.211]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[51,2.249,89,1.409,233,3.666,1288,3.765]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[89,1.262,672,3.23,2340,5.614,2341,5.614,2342,6.466]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[38,0.076,89,1.793,121,1.373,335,1.31,357,2.245,1324,1.353]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[128,1.296,2019,3.952,2193,2.521,2315,2.896]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[50,2.665,128,0.934,415,3.126,1802,2.555,2013,3.126,2019,2.848,2343,5.2,2344,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[38,0.093,73,1.091,77,2.432,89,1.34,115,0.579,191,0.934,192,1.96,282,1.884,335,0.979,684,3.975,1324,1.011,1601,4.243,2019,5.064]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/social-networking/phpfox/",[2345,7.706]],["keywords//docs/applications/social-networking/phpfox/",[859,4.917,2082,6.16,2345,6.16]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[804,0.471]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[128,1.296,2012,4.129,2193,2.521,2315,2.896]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2012,4.027,2013,4.231,2014,5.276,2015,5.276]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[38,0.092,73,1.07,115,0.574,191,0.916,192,1.923,282,1.848,335,0.96,354,2.465,666,2.011,752,1.937,1324,0.992,2012,6.349]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[74,0.812,111,1.403,128,1.035,375,1.259,991,2.42,1032,3.123,2176,2.765]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1819,4.992,2346,6.466,2347,5.953,2348,6.466,2349,6.466]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[38,0.073,74,1.231,115,0.484,335,1.245,375,2.563,1324,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[287,0.786,2035,4.082,2250,3.518,2251,3.491]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[287,0.606,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2350,5.563]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[38,0.073,115,0.484,120,2.244,329,2.388,666,2.608,771,5.967,2035,6.11]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[86,1.918,438,3.612,444,2.031,1111,1.862,2046,4.107,2047,3.155,2238,3.155]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[444,2.28,619,2.701,2047,3.542,2060,3.471,2283,5.362]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[86,1.797,287,0.588,438,3.385,444,1.903,2046,3.848,2047,2.956,2250,2.631,2251,2.611]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[287,0.704,444,2.28,619,2.701,2047,3.542,2060,3.471]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[287,0.786,1281,4.178,2250,3.518,2251,3.491]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.809,1281,4.074,1666,3.304,2006,5.276]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[38,0.084,66,1.305,77,2.298,81,3.324,82,3.946,111,1.58,121,0.969,335,0.925,352,2.319,357,1.585,666,1.937,1281,6.627,1324,0.955,2007,5.176]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[89,1.206,128,1.109,2193,2.157,2287,4.403,2288,5.12,2315,2.479]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[200,3.789,352,2.312,412,3.374,1666,3.036,2287,4.61]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[38,0.077,66,1.381,73,1.091,77,2.432,82,3.593,89,1.34,115,0.381,121,1.026,192,1.96,335,0.979,352,2.454,357,1.678,752,1.975,1324,1.011,2287,6.592,2289,5.961]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[74,0.938,111,1.621,375,1.455,1032,3.608,1483,4.113]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[111,1.714,375,1.538,1483,4.349,2279,5.433]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[38,0.069,74,1.173,115,0.461,278,5.142,335,1.186,375,2.632,1324,1.225]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[804,0.471]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[21,1.851,287,0.673,375,1.35,1814,3.222,2250,3.011,2251,2.987]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[162,5.018,287,0.767,375,1.538,1814,3.672]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[38,0.08,79,2.228,115,0.533,139,2.211,191,0.992,262,1.776,265,5.084,354,2.668,590,4.572,644,2.721,1814,5.977]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[89,1.299,193,1.698,1111,2.151,1140,2.56,2238,3.645]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[89,1.374,1499,4.124,1500,4.718,2351,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[38,0.062,57,2.249,115,0.541,121,1.112,139,2.258,193,1.9,195,2.751,335,1.061,357,1.819,498,3.958,1140,2.863,1324,1.096,2265,4.818,2352,5.581]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[89,1.299,1111,2.151,1140,2.56,1802,3.271,2238,3.645]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[89,1.374,1499,4.124,1989,4.908,2351,6.11]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[38,0.062,57,2.249,115,0.541,121,1.112,139,2.258,195,2.751,335,1.061,357,1.819,498,3.958,1140,3.753,1324,1.096,1525,5.436,1802,3.658]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[804,0.471]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[287,0.786,1281,4.178,2104,3.206,2239,3.106]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.809,1281,4.074,1666,3.304,2006,5.276]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[38,0.084,66,1.305,77,2.298,81,3.324,82,3.946,111,1.58,121,0.969,335,0.925,352,2.319,357,1.585,666,1.937,1281,6.627,1324,0.955,2007,5.176]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1111,2.547,2035,4.458,2353,4.316]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[99,1.571,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2354,5.563]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[32,2.011,38,0.056,73,1.07,115,0.506,120,1.73,121,1.006,125,1.937,192,1.923,193,1.719,262,1.641,329,1.842,356,3.651,491,4.359,666,2.011,752,1.937,771,4.601,1006,2.538,2035,5.162]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[51,1.925,74,0.87,89,1.206,766,3.165,1276,3.193,1288,3.222]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[39,2.581,89,1.262,766,3.314,1276,3.343,1877,5.614]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[38,0.061,66,1.467,73,1.529,82,2.834,88,3.327,89,1.423,115,0.404,121,1.089,308,2.959,335,1.039,357,1.782,1276,4.976,1324,1.073,1817,3.77]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[74,0.87,89,1.206,766,3.165,1111,1.996,1276,3.193,2238,3.382]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[38,0.081,73,1.182,82,2.893,88,3.397,89,1.905,115,0.541,121,1.112,335,1.061,357,1.819,1276,5.044,1324,1.096]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[73,0.981,191,0.84,192,1.763,263,3.137,1111,1.996,2238,3.382]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[647,6.16,2355,7.72,2356,7.106]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[38,0.077,73,0.871,102,2.573,115,0.562,120,1.408,121,0.819,134,2.536,144,2.518,191,1.26,196,2.451,275,3.608,277,2.302,308,2.224,329,1.499,335,0.781,338,3.173,357,1.339,422,2.631,590,3.437,642,2.631,878,4.109,919,2.467,1324,0.807,1524,3.907,2357,4.109]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[191,0.982,1111,2.333,1144,4.037,2238,3.952]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[667,3.343,2358,6.466,2359,6.466,2360,6.466,2361,5.614]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[38,0.069,74,1.173,121,1.243,139,2.524,191,1.132,335,1.186,357,2.034,1144,5.863,1324,1.225]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[191,0.905,287,0.725,1144,3.723,2250,3.245,2251,3.219]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[667,3.343,1949,5.16,2362,6.466,2363,6.466,2364,6.466]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[38,0.082,74,1.072,121,1.136,139,2.306,150,5.097,191,1.034,335,1.084,357,1.859,667,3.932,1144,5.535,1324,1.12,2314,5.701]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[191,0.784,263,2.926,287,0.627,644,2.15,739,2.16,2250,2.808,2251,2.786]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[287,0.652,1675,4.087,1846,3.871,2337,4.959,2365,5.506,2366,5.506]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[74,0.87,111,1.504,375,1.35,1032,3.348,1111,1.996,2238,3.382]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1819,5.96,1820,6.401,2367,7.72]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[38,0.063,74,1.072,115,0.548,282,2.087,335,1.084,375,2.403,917,4.7,918,4.043,919,3.423,1324,1.12,1658,5.701]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[89,1.409,233,3.666,1111,2.333,2238,3.952]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[89,1.168,144,2.748,672,2.988,2283,4.959,2351,5.193,2368,5.193]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[21,1.812,32,1.805,33,2.858,38,0.07,57,1.826,66,1.216,89,2.069,121,0.903,125,1.738,262,1.472,290,2.349,291,2.65,308,2.453,335,0.862,357,1.477,666,1.805,752,1.738,812,2.758,1006,2.278,1324,0.89,1667,4.531,1817,3.125]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[73,0.915,191,0.784,192,1.645,263,2.926,287,0.627,2250,2.808,2251,2.786]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[191,0.814,672,2.988,1973,4.368,2369,5.981,2370,5.981,2371,5.981]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[38,0.084,115,0.487,120,1.637,121,0.952,134,2.948,191,1.195,196,3.929,244,3.603,263,3.236,277,2.676,308,2.585,329,1.742,335,0.908,357,1.557,422,3.058,642,3.058,1324,0.938,1452,4.443]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[38,0.048,73,0.915,287,0.627,1996,3.092,2070,3.375,2104,2.559,2239,2.479]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2300,5.506]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[21,1.618,287,0.588,475,3.244,729,1.92,1726,3.687,2044,3.289,2250,2.631,2251,2.611]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[38,0.061,115,0.635,120,1.873,121,1.089,329,1.994,335,1.039,357,1.782,576,4.506,730,3.081,1324,1.073,2044,6.564]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[287,0.786,2035,4.082,2104,3.206,2239,3.106]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[287,0.606,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2372,5.563]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[38,0.073,115,0.484,120,2.244,329,2.388,666,2.608,771,5.967,2035,6.11]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[86,1.797,287,0.588,438,3.385,444,1.903,2046,3.848,2047,2.956,2104,2.398,2239,2.323]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[287,0.704,444,2.28,619,2.701,2047,3.542,2060,3.471]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/databases/redis/redis-on-fedora-14/",[791,4.189,1111,2.547,2238,4.316]],["keywords//docs/databases/redis/redis-on-fedora-14/",[111,1.575,791,3.438,858,3.257,2004,4.61,2373,6.466]],["toc//docs/databases/redis/redis-on-fedora-14/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[89,1.206,287,0.673,412,3.222,1168,3.283,2250,3.011,2251,2.987]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[38,0.087,57,2.074,89,1.805,121,1.381,122,2.066,195,2.537,277,2.884,308,2.786,335,0.979,357,1.678,375,1.5,422,3.296,670,3.884,1324,1.011,1817,3.55]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[82,1.973,191,0.691,193,1.296,287,0.553,331,1.758,1220,2.81,2250,2.475,2251,2.456,2374,3.62]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1666,2.612,1834,3.801,1835,3.801,2375,5.563,2376,5.563,2377,4.063,2378,4.063]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[38,0.061,115,0.404,121,1.089,146,5.628,191,1.309,193,2.456,196,3.26,270,2.656,335,1.039,357,1.782,1220,4.035,1243,4.171,1324,1.073,1837,5.466]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[73,0.915,287,0.627,730,2.434,1024,3.375,1961,3.418,2250,2.808,2251,2.786]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1344,3.489,1961,3.301,1963,4.171,1964,4.171,2214,4.83,2215,4.613,2379,5.563]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[38,0.062,57,2.249,86,2.478,115,0.541,121,1.112,139,2.258,142,3.958,195,2.751,335,1.061,357,1.819,730,4.123,1324,1.096,1961,4.417]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[74,0.76,91,2.413,92,3.335,134,2.497,1111,1.745,2052,2.897,2053,3.848,2238,2.956]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[99,1.988,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[38,0.076,74,1.295,335,1.31,1324,1.353,2052,5.981]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[74,0.715,91,2.27,92,3.137,134,2.349,287,0.553,2052,2.725,2053,3.62,2250,2.475,2251,2.456]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[287,0.767,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[38,0.088,74,1.201,335,1.215,752,2.451,1324,1.255,2052,6.226]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[74,0.76,86,1.797,137,2.294,191,0.734,271,2.367,287,0.588,2250,2.631,2251,2.611]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[73,1.146,1111,2.333,1149,3.666,2238,3.952]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[32,1.588,38,0.064,57,1.606,73,1.228,89,1.778,111,1.295,115,0.295,120,1.366,121,0.794,125,1.529,192,1.518,193,1.357,262,1.295,282,1.459,291,2.331,329,1.454,330,3.44,335,0.758,352,3.255,354,1.946,357,1.299,375,1.162,752,1.529,812,2.426,1006,2.004,1111,1.718,1140,2.045,1324,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[73,1.057,287,0.725,1149,3.381,2380,3.124,2381,3.08]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[32,1.637,38,0.066,57,1.656,73,1.255,89,1.809,111,1.335,115,0.304,120,1.408,125,1.577,192,1.565,193,1.399,262,1.335,282,1.504,287,0.597,291,2.404,329,1.499,330,3.547,335,0.781,352,3.312,354,2.006,375,1.198,752,1.577,812,2.501,1006,2.066,1140,2.108,1324,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[73,1.146,722,3.185,1111,2.333,2238,3.952]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1765,5.14,1766,5.276,2382,7.037,2383,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[38,0.085,73,1.284,111,1.969,115,0.603,120,1.453,121,1.207,122,1.702,134,2.617,191,1.099,192,1.615,193,1.443,329,1.547,357,1.382,375,2.248,491,3.661,642,2.715]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[804,0.471]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[73,1.252,125,2.267,1163,4.676]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1163,4.581,1596,6.16,2384,7.72]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[804,0.471]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[475,4.338,2385,5.41,2386,6.265,2387,6.265]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[51,1.864,332,3.871,831,4.484,2386,5.193,2387,5.193,2388,4.959]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[78,3.824,113,2.784,339,5.968,340,4.596,475,4.596,535,8.618,1448,4.547,1613,7.037,1754,4.043,1853,4.342,2021,5.124,2182,4.547,2299,4.547,2386,8.618,2387,9.166,2389,7.644,2390,5.236]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[262,1.504,287,0.673,693,3.111,859,3.933,2250,3.011,2251,2.987]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[287,0.652,407,3.092,619,2.498,693,3.013,2337,4.959,2366,5.506]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[30,4.811,38,0.038,67,3.58,72,2.278,74,0.643,115,0.382,126,2.189,183,4.262,241,3.181,262,1.68,267,2.86,329,1.247,335,0.65,374,2.742,407,3.567,485,4.203,619,2.881,693,4.191,724,3.446,739,2.587,958,3.252,959,3.252,966,3.252,1063,4.465,1065,2.609,1294,3.252,1324,0.671,1890,3.33,1891,3.419]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[51,1.795,74,0.812,244,3.258,318,2.449,538,3.612,2391,5.001,2392,5.001]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[51,2.194,2391,6.11,2392,6.11,2393,7.037]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[78,5.937,244,5.842,282,2.231,312,5.449,331,2.815,336,7.483,609,5.098,861,4.764,2391,7.058,2392,7.058]],["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/",[79,1.887,567,4.307,650,3.873,952,4.927,2260,5.361,2394,4.767]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[51,1.864,434,4.264,952,4.772,1501,3.696,2388,4.959,2395,5.506]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[74,1.072,339,4.572,426,3.596,645,4.339,867,5.422,949,4.843,952,8.774,1813,5.422,2260,8.589,2396,7]],["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/",[74,0.812,82,2.239,91,2.576,185,3.092,668,2.724,1111,1.862,2238,3.155]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[111,1.714,668,3.328,858,3.545,1009,4.809]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[32,1.869,38,0.083,66,1.259,74,0.882,77,3.073,88,2.855,125,1.8,248,3.667,262,1.524,308,3.522,335,0.892,426,2.959,666,1.869,668,4.711,752,1.8,1006,2.359,1324,0.921,1817,3.235]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[73,1.057,287,0.725,1149,3.381,2250,3.245,2251,3.219]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[32,1.588,38,0.064,57,1.606,73,1.228,89,1.778,111,1.295,115,0.295,120,1.366,121,0.794,125,1.529,192,1.518,193,1.357,262,1.295,282,1.459,287,0.579,291,2.331,329,1.454,330,3.44,335,0.758,352,3.255,354,1.946,357,1.299,375,1.162,752,1.529,812,2.426,1006,2.004,1140,2.045,1324,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[51,2.074,86,2.216,125,1.914,1163,3.949,1483,4.113]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[125,2.459,1163,5.073]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[38,0.082,77,2.178,115,0.592,191,0.836,307,4.384,331,2.129,335,0.877,354,2.25,666,1.836,730,2.598,1024,3.603,1163,6.663,1322,5.978,1324,0.905,1723,4.288]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[804,0.471]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[86,2.056,125,1.776,287,0.673,1163,3.664,2250,3.011,2251,2.987]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[125,2.459,1163,5.073]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[38,0.089,66,0.981,77,1.727,81,3.717,115,0.48,238,2.166,283,1.703,290,1.895,307,3.476,331,1.688,335,0.695,354,1.784,387,2.857,666,1.456,730,2.06,752,1.402,914,5.787,1024,2.857,1040,3.331,1163,6.784,1322,5.058,1324,0.718,1723,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[74,0.87,89,1.206,99,1.744,766,3.165,1276,3.193,2193,2.157]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[38,0.08,73,1.529,82,2.834,88,3.327,89,1.879,115,0.533,121,1.089,335,1.039,357,1.782,1276,4.976,1324,1.073]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[74,0.87,89,1.206,766,3.165,1111,1.996,1276,3.193,2353,3.382]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[38,0.061,73,1.529,82,2.834,88,3.327,89,1.879,115,0.533,335,1.039,422,3.5,812,3.327,1276,5.57,1324,1.073]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[74,0.812,89,1.124,287,0.627,766,2.952,1276,2.978,2380,2.704,2381,2.665]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[38,0.061,73,1.529,82,2.834,88,3.327,89,1.879,115,0.533,335,1.039,422,3.5,812,3.327,1276,5.57,1324,1.073]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[77,2.04,287,0.627,692,4.318,729,2.049,1023,2.16,2104,2.559,2239,2.479]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[516,3.343,729,2.301,1023,2.425,1066,3.887,2316,5.362]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[38,0.055,66,1.33,102,3.102,115,0.499,120,1.698,121,0.987,262,1.61,329,1.807,335,0.942,357,1.615,729,3.206,730,3.807,746,4.826,1023,3.379,1024,3.873,1324,0.973,2317,5.479]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[77,2.04,287,0.627,692,4.318,729,2.049,1023,2.16,2250,2.808,2251,2.786]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[516,3.343,729,2.301,1023,2.425,1066,3.887,2316,5.362]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[38,0.055,66,1.33,102,3.102,115,0.499,120,1.698,121,0.987,262,1.61,329,1.807,335,0.942,357,1.615,729,3.206,730,3.807,746,4.826,1023,3.379,1024,3.873,1324,0.973,2317,5.479]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[89,1.299,115,0.369,144,3.058,270,2.424,644,2.484]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[89,1.015,144,2.389,264,3.797,644,1.941,1684,4.787,2397,5.2,2398,5.2,2399,5.2]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[21,1.3,38,0.036,52,3.939,66,0.872,74,0.936,77,1.536,89,1.764,104,2.242,115,0.368,120,1.706,144,3.051,147,2.305,164,3.024,295,2.963,329,1.816,422,2.082,498,2.305,593,2.907,644,4.117,724,3.316,739,3.654,758,2.643,759,3.402,1110,2.72,2400,4.336,2401,6.638]],["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/",[74,0.812,89,1.124,128,1.035,766,2.952,1276,2.978,2193,2.012,2315,2.312]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[38,0.059,73,1.135,82,2.776,88,3.26,89,1.853,115,0.526,121,1.067,335,1.018,357,1.746,422,3.429,812,3.26,1276,5.514,1324,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[74,0.812,89,1.124,287,0.627,766,2.952,1276,2.978,2250,2.808,2251,2.786]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[39,2.809,89,1.374,766,3.607,1276,3.639]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[38,0.059,73,1.135,82,2.776,88,3.26,89,1.853,115,0.526,121,1.067,335,1.018,357,1.746,422,3.429,812,3.26,1276,5.514,1324,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[20,1.88,21,1.851,287,0.673,2250,3.011,2251,2.987,2261,3.619]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[804,0.471]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[287,0.786,791,3.836,2250,3.518,2251,3.491]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[111,1.575,858,3.257,2004,4.61,2402,6.466,2403,6.466]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[21,2.068,32,1.362,33,2.157,38,0.038,66,0.918,90,2.818,91,2.04,115,0.461,125,1.312,133,2.524,185,2.448,262,1.111,282,1.252,290,3.234,308,1.851,331,1.579,335,0.65,354,1.669,362,2.904,474,2.552,752,2.668,791,5.785,812,3.797,1006,1.719,1044,2.552,1324,0.671,1817,2.358,2005,4.918]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[191,0.84,287,0.673,554,3.816,1275,2.838,2250,3.011,2251,2.987]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[38,0.082,82,2.956,115,0.548,121,1.136,191,1.034,238,3.378,335,1.084,357,1.859,766,3.897,1275,4.546,1324,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[290,2.587,318,2.829,339,4.001,716,4.745,865,5.138]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[865,5.96,921,6.16,2404,7.72]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[29,4.968,34,4.046,74,0.76,79,1.649,113,2.869,144,3.591,148,4.475,290,4.153,342,3.848,458,4.306,650,3.385,673,2.652,716,5.571,739,2.024,758,3.289,759,2.766,865,6.032,1070,4.046,1258,3.848,1700,4.475,1813,3.848,1977,4.968,2243,4.968,2405,4.968,2406,4.968,2407,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/",[51,1.925,74,0.87,79,1.887,318,2.625,339,3.712,609,3.873]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[51,2.406,921,6.16,2408,7.72]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[51,2.767,74,1.054,77,1.801,79,3.188,80,3.626,108,3.409,109,3.547,113,2.704,134,2.354,161,3.475,180,3.626,244,2.877,277,2.137,295,3.475,318,3.774,339,3.058,609,7.258,642,2.442,673,2.499,867,3.626,1394,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/",[20,2.026,21,1.995,1111,2.151,2261,3.9,2353,3.645]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[125,1.776,282,1.695,645,2.708,1111,1.996,1445,3.533,2353,3.382]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[804,0.471]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[74,0.812,111,1.403,116,2.526,287,0.627,1032,3.123,2250,2.808,2251,2.786]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[116,2.623,1033,4.772,1034,3.645,1132,4.009,2409,5.981,2410,5.981]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[38,0.072,66,2.004,111,2.114,115,0.347,116,4.369,121,0.935,126,3.004,155,4.05,262,1.524,283,2.186,335,0.892,608,2.432,919,2.817,1035,3.58,1039,4.119,1324,0.921,2068,4.83,2069,4.83]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[804,0.471]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[76,1.564,79,2.034,567,4.641,650,4.174,950,5.31]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[51,2.194,434,5.018,950,5.616,2388,5.835]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[74,1.072,76,1.787,79,2.324,104,3.932,318,3.233,426,3.596,650,4.769,950,9.292,1062,6.602,1813,5.422,2396,7]],["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/",[73,0.915,104,2.978,192,1.645,287,0.627,1972,3.188,2250,2.808,2251,2.786]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[191,0.957,1972,3.895,1973,5.14,1974,5.018]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[74,0.812,111,1.403,287,0.627,375,1.259,1032,3.123,2250,2.808,2251,2.786]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1437,4.257,2061,4.992,2062,4.722,2411,6.466,2412,6.466]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[38,0.068,74,1.146,77,2.879,115,0.572,282,2.231,335,1.159,375,2.48,1324,1.197]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[89,1.206,287,0.673,1140,2.375,1802,3.035,2250,3.011,2251,2.987]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[89,1.262,1499,3.789,1987,4.992,1989,4.51,2336,5.614]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[38,0.049,57,1.795,61,5.51,66,1.195,102,2.789,113,4.449,115,0.583,120,1.527,121,0.888,139,1.802,195,2.196,270,2.164,329,1.625,335,0.847,357,1.452,444,2.095,498,3.159,1140,2.285,1324,0.875,1395,3.726,1501,3.672,1802,2.92]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[287,0.786,1001,3.491,2250,3.518,2251,3.491]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2196,5.835,2197,5.835,2413,7.037,2414,7.037]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[282,2.589,939,7.071,1001,4.563,2102,7.82,2415,8.189]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[73,1.057,287,0.725,722,2.937,2250,3.245,2251,3.219]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1631,4.992,2076,4.992,2337,5.362,2416,6.466,2417,6.466]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[38,0.087,73,1.329,111,2.039,115,0.615,120,1.527,121,1.25,122,1.788,134,2.749,191,0.808,192,1.697,193,1.516,329,1.625,357,1.452,375,2.117,642,2.852]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[74,0.87,384,3.816,444,2.177,481,4.403,1038,4.63,2418,5.361]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[444,2.481,753,3.431,1685,5.835,2418,6.11]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[38,0.049,73,0.944,74,1.562,242,4.741,443,3.62,444,2.951,560,4.741,718,3.912,724,2.968,1038,4.454,1210,4.587,1754,4.587,1813,4.236,2418,10.261,2419,5.941,2420,5.941]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[74,0.938,125,1.914,282,1.826,481,4.745,2421,5.778]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[51,1.864,78,4.368,356,3.243,753,2.916,2422,5.981,2423,5.981]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[74,1.072,184,5.553,282,2.087,318,3.233,356,4.123,1813,5.422,1852,6.068,2122,6.602,2421,10.11,2424,7.604,2425,7.604]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1111,2.547,2353,4.316,2426,6.083]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[185,3.778,742,4.908,1111,2.275,2426,5.433]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[32,2.223,38,0.081,115,0.413,125,2.141,192,2.126,262,1.813,335,1.061,644,2.778,666,2.223,739,2.792,752,2.141,1006,2.806,1324,1.096,1809,5.436]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[287,0.627,375,1.259,729,2.049,1023,2.16,1557,3.033,2250,2.808,2251,2.786]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[287,0.606,729,1.979,1557,2.93,2251,2.691,2427,5.563,2428,5.563,2429,5.563]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[38,0.041,57,1.473,66,0.981,74,0.687,115,0.532,121,1.294,122,2.183,139,2.199,195,1.802,283,2.534,329,1.333,335,0.695,341,3.43,357,1.192,375,1.893,382,2.24,644,1.82,645,2.138,730,2.06,739,1.829,984,2.498,1023,3.248,1324,0.718,1557,2.567,1561,2.971,1562,3.56,2209,3.331]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[89,1.206,193,1.576,287,0.673,1140,2.375,2250,3.011,2251,2.987]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[89,1.374,1499,4.124,1500,4.718,2336,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,2.373,38,0.048,57,1.737,61,5.382,66,1.156,86,1.914,102,2.698,113,4.346,115,0.527,120,1.477,121,0.859,139,1.743,193,1.467,195,2.124,262,1.4,270,2.094,329,1.572,335,0.82,357,1.405,572,3.784,1140,2.211,1324,0.846,1395,3.605,1497,3.605,1501,3.552]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[74,0.76,82,2.098,91,2.413,185,2.897,287,0.588,668,2.552,2250,2.631,2251,2.611]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[111,1.714,858,3.545,1009,4.809,2430,5.616]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[32,2.011,38,0.056,66,1.355,74,0.949,77,3.232,88,3.073,125,1.937,248,3.946,262,1.641,308,3.704,335,0.96,426,3.185,668,4.316,752,1.937,1006,2.538,1324,0.992,1817,3.482]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[804,0.471]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[66,1.339,79,2.034,282,1.826,640,4.86,2431,6.126]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[51,2.016,456,5.953,921,5.16,1501,3.996,2388,5.362]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[66,1.932,74,0.823,79,1.786,113,3.106,262,1.423,282,1.604,318,2.484,530,7.614,640,8.354,2021,3.917,2431,5.379,2432,9.064,2433,8.271,2434,5.843,2435,5.843,2436,5.843]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[21,1.995,74,0.938,79,2.034,645,2.919,2437,5.778]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2437,6.703,2438,7.72,2439,7.72]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[74,0.797,79,2.882,115,0.523,180,4.033,275,3.724,318,2.405,331,2.798,426,2.675,645,4.773,779,6.239,933,3.495,969,5.207,1068,6.449,1925,4.69,2437,8.187,2440,5.656,2441,5.656]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[81,3.698,111,1.758,271,3.165,668,3.412]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[111,1.714,271,3.087,668,3.328,858,3.545]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[23,2.108,66,0.955,73,0.754,75,1.108,76,1.115,79,2.172,87,1.959,93,2.081,111,1.156,115,0.472,120,1.219,121,0.709,122,1.428,139,1.439,183,2.18,270,2.589,271,3.737,279,2.498,283,1.658,374,2.852,440,4.119,536,3.934,668,2.244,684,2.747,724,2.37,795,8.798,897,4.119,1011,3.786,1038,3.557,2442,4.367,2443,7.106]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[287,0.673,1965,4.307,1966,4.219,1967,3.763,2104,2.743,2239,2.658]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[193,1.796,1666,3.304,1967,4.289,1968,5.14]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[32,2.373,115,0.44,125,2.286,262,1.936,290,3.089,335,1.133,527,5.666,666,2.373,752,2.286,1006,2.995,1324,1.17,1967,4.842]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[119,3.334,192,1.645,193,1.47,1111,1.862,1140,2.216,2033,3.155,2353,3.155]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2033,3.542,2444,5.953,2445,5.953,2446,5.953,2447,6.466]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[38,0.071,57,2.574,115,0.59,139,2.584,195,3.149,335,1.215,498,4.53,1324,1.255]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[804,0.471]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1111,1.996,1566,4.767,1788,4.767,2353,3.382,2448,4.403,2449,4.51]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[729,2.504,1111,2.275,1981,4.809,2448,5.018]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[38,0.071,115,0.59,335,1.215,608,3.312,1324,1.255,2449,8.469]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1111,2.547,2019,4.316,2353,4.316]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[50,2.851,415,3.344,1111,1.798,1802,2.734,2013,3.344,2019,3.047,2450,4.439]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[38,0.057,74,1.303,115,0.512,254,4.074,335,0.979,384,4.243,441,4.127,616,3.841,1324,1.011,1601,4.243,2019,6.586,2451,5.961]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[86,2.056,1111,1.996,1243,3.533,1951,3.997,1990,3.619,2353,3.382]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1953,3.662,1954,3.662,1955,3.601,1956,3.601,1990,3.26,1994,4.171,1995,3.662]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[38,0.051,74,0.866,77,2.178,88,2.806,115,0.341,120,1.58,121,0.919,248,3.603,283,2.148,297,3.559,329,1.681,335,0.877,357,2.095,444,2.168,684,3.559,753,2.998,1324,0.905,1990,5.783,1996,3.301,1999,4.61,2000,4.288,2001,3.979]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[125,1.657,128,1.035,282,1.581,645,2.526,1445,3.296,2193,2.012,2315,2.312]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[804,0.471]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[125,1.657,282,1.581,287,0.627,645,2.526,1445,3.296,2104,2.559,2239,2.479]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[32,2.428,38,0.068,57,2.456,115,0.451,166,4.764,282,2.231,531,5.352,641,4.322,1445,6.493]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[125,2.267,645,3.456,1445,4.509]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[262,1.714,645,3.087,1445,4.027,1446,5.018]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[804,0.471]],["title//docs/websites/wikis/confluence-on-centos-5/",[99,2.226,2193,2.753,2452,5.019]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2452,4.482,2453,7.037,2454,5.616,2455,5.616]],["toc//docs/websites/wikis/confluence-on-centos-5/",[38,0.079,66,1.91,111,1.74,115,0.396,120,1.835,121,1.067,329,1.953,357,1.746,667,3.693,905,5.355,991,3.001,2452,7.237]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[804,0.471]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1111,2.547,2353,4.316,2452,5.019]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2452,4.482,2454,5.616,2455,5.616,2456,7.037]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[38,0.077,66,1.86,111,1.672,115,0.381,120,1.764,121,1.026,329,1.877,335,0.979,357,1.678,667,3.55,905,5.147,991,2.884,1324,1.011,2452,7.123]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[86,1.918,438,3.612,444,2.031,1111,1.862,2046,4.107,2047,3.155,2353,3.155]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[444,2.28,619,2.701,2047,3.542,2060,3.471,2457,5.614]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[38,0.055,66,1.33,79,2.02,86,2.2,115,0.499,120,1.698,195,2.442,335,0.942,356,3.583,439,4.027,752,1.901,1324,0.973,1376,5.931,2047,6.03,2050,4.609,2051,4.712]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[74,0.812,142,3.062,444,2.031,1111,1.862,2056,3.062,2057,3.935,2353,3.155]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[444,2.109,794,3.751,2056,3.18,2059,4.368,2060,3.211,2218,5.193]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[38,0.057,74,0.967,115,0.579,261,3.722,282,1.884,335,0.979,426,3.247,444,2.42,474,3.841,608,2.668,1324,1.011,2056,6.206,2060,3.685]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[74,0.76,142,2.869,287,0.588,444,1.903,2056,2.869,2057,3.687,2380,2.533,2381,2.497]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[444,2.109,794,3.751,2056,3.18,2058,4.772,2059,4.368,2060,3.211]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[38,0.057,74,0.967,115,0.579,261,3.722,282,1.884,335,0.979,426,3.247,444,2.42,474,3.841,608,2.668,1324,1.011,2056,6.206,2060,3.685]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[128,1.296,2193,2.521,2315,2.896,2452,4.596]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2452,4.482,2454,5.616,2455,5.616,2458,7.037]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[38,0.062,66,1.963,111,1.813,115,0.413,120,1.913,121,1.112,329,2.036,335,1.061,357,1.819,1324,1.096,2452,7.356]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[287,0.786,2380,3.388,2381,3.339,2452,4.596]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2452,4.482,2454,5.616,2455,5.616,2459,7.037]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[38,0.062,66,1.963,111,1.813,115,0.413,120,1.913,121,1.112,329,2.036,335,1.061,357,1.819,1324,1.096,2452,7.356]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[287,0.786,2104,3.206,2239,3.106,2452,4.596]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2452,4.482,2454,5.616,2455,5.616,2460,7.037]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[38,0.062,66,1.963,111,1.813,115,0.413,120,1.913,121,1.112,329,2.036,335,1.061,357,1.819,1324,1.096,2452,7.356]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[86,1.797,287,0.588,438,3.385,444,1.903,2046,3.848,2047,2.956,2380,2.533,2381,2.497]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[444,2.28,619,2.701,2047,3.542,2060,3.471,2461,5.16]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[38,0.054,66,1.305,79,1.983,115,0.36,120,1.667,195,2.397,221,2.981,270,2.363,335,0.925,349,4.625,356,3.517,439,3.953,752,1.866,1324,0.955,1376,5.857,2031,4.348,2047,5.561,2050,4.524,2051,4.625]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[51,2.249,74,1.017,318,3.068,844,5.571]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[161,4.418,332,4.185,844,4.992,2395,5.953,2462,6.466]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[51,2.463,74,1.113,113,2.914,121,0.819,277,2.302,308,2.224,312,3.674,318,3.359,384,3.387,438,3.437,537,4.544,844,8.298,1570,5.045,2030,4.231,2154,4.544,2463,5.48,2464,7.273,2465,9.264,2466,5.48,2467,5.48,2468,5.48,2469,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/",[128,1.109,619,2.579,2193,2.157,2315,2.479,2345,4.927,2470,5.684]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[859,4.917,2082,6.16,2345,6.16]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[38,0.076,290,3.571,335,1.31,666,2.744,1324,1.353,2345,7.33]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[66,1.021,74,0.715,287,0.553,413,3.62,2016,3.342,2017,3.286,2018,4.673,2104,2.255,2239,2.185]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[413,4.61,985,4.722,990,4.992,2016,4.257,2017,4.185]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[38,0.068,77,2.879,115,0.629,331,2.815,752,2.339,2016,5.352,2017,7.345]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[66,1.086,74,0.76,287,0.588,413,3.848,2016,3.553,2017,3.493,2380,2.533,2381,2.497]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[413,4.61,985,4.722,990,4.992,2016,4.257,2017,4.185]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[38,0.062,77,2.637,115,0.603,221,3.421,270,2.712,331,2.578,752,2.141,2016,4.901,2017,7.475,2031,4.99]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[191,0.784,263,2.926,287,0.627,644,2.15,739,2.16,2104,2.559,2239,2.479]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[287,0.652,1675,4.087,1846,3.871,2365,5.506,2471,4.617,2472,5.506]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[81,2.766,82,2.098,128,0.969,191,0.734,2193,1.885,2315,2.166,2473,4.686,2474,4.166]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[191,0.88,2475,5.614,2476,5.614,2477,4.992,2478,5.614]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[38,0.088,66,1.704,82,2.349,85,4.309,111,1.472,115,0.335,121,0.903,139,1.833,191,1.152,195,2.233,335,0.862,357,1.477,375,1.851,752,1.738,1324,0.89,2474,4.665,2477,6.538,2479,5.247,2480,5.247]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[81,2.766,82,2.098,191,0.734,287,0.588,2104,2.398,2239,2.323,2473,4.686,2474,4.166]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[191,0.88,2475,5.614,2476,5.614,2477,4.992,2478,5.614]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[38,0.086,66,1.645,82,2.234,85,4.098,111,1.4,115,0.319,121,0.859,139,1.743,191,1.112,195,2.124,221,2.641,270,2.094,335,0.82,357,1.405,375,1.787,752,1.653,1324,0.846,2031,3.853,2474,4.437,2477,6.311,2479,4.991,2480,4.991]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[86,2.056,99,1.744,1243,3.533,1950,3.664,1951,3.997,2193,2.157]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1950,2.897,1952,3.565,1953,3.214,1954,3.214,1955,3.159,1956,3.159,1995,3.214,2481,4.881,2482,4.493]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[38,0.088,115,0.472,121,1.273,268,4.091,439,5.193,666,2.545,1950,6.312]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[21,1.618,287,0.588,475,3.244,729,1.92,1726,3.687,2044,3.289,2104,2.398,2239,2.323]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[38,0.061,115,0.635,120,1.873,121,1.089,329,1.994,335,1.039,357,1.782,576,4.506,730,3.081,1324,1.073,2044,6.564]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/applications/social-networking/planet-feed-aggregator/",[990,6.083,2016,5.188,2017,5.1]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2017,5.533,2082,6.821]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[804,0.471]],["title//docs/databases/redis/redis-on-centos-5/",[99,2.226,791,4.189,2193,2.753]],["keywords//docs/databases/redis/redis-on-centos-5/",[111,1.575,791,3.438,858,3.257,2004,4.61,2483,6.466]],["toc//docs/databases/redis/redis-on-centos-5/",[21,2.342,32,1.612,33,2.552,38,0.045,90,3.335,91,2.413,115,0.299,125,1.552,133,2.987,185,2.897,262,1.315,282,1.481,290,2.098,308,2.19,331,1.869,352,1.929,354,1.975,362,3.437,474,3.019,752,2.248,791,5.68,812,2.463,1006,2.034,1044,3.019,1817,2.79,2005,5.571]],["deprecated//docs/databases/redis/redis-on-centos-5/",[804,0.471]],["title//docs/databases/redis/redis-on-fedora-13/",[791,4.189,1111,2.547,2353,4.316]],["keywords//docs/databases/redis/redis-on-fedora-13/",[111,1.575,791,3.438,858,3.257,2004,4.61,2484,6.466]],["toc//docs/databases/redis/redis-on-fedora-13/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[804,0.471]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[287,0.786,791,3.836,2380,3.388,2381,3.339]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[111,1.575,858,3.257,2004,4.61,2485,6.466,2486,5.953]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[82,2.098,191,0.734,193,1.377,331,1.869,1111,1.745,1220,2.987,2353,2.956,2374,3.848]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[38,0.068,115,0.451,121,1.215,191,1.405,193,2.635,335,1.159,357,1.987,1220,4.5,1324,1.197]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[191,0.84,287,0.673,412,3.222,1168,3.283,2104,2.743,2239,2.658]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1169,4.231,1485,4.349,1886,5.276,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[38,0.065,104,4.018,115,0.431,119,4.499,121,1.161,191,1.057,238,3.453,352,2.778,357,1.899,382,3.571,670,5.676,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[81,2.766,82,2.098,191,0.734,287,0.588,2380,2.533,2381,2.497,2473,4.686,2474,4.166]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[191,0.88,2475,5.614,2476,5.614,2477,4.992,2478,5.614]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[38,0.086,66,1.645,82,2.234,85,4.098,111,1.4,115,0.319,121,0.859,139,1.743,191,1.112,195,2.124,221,2.641,270,2.094,335,0.82,357,1.405,375,1.787,752,1.653,1324,0.846,2031,3.853,2474,4.437,2477,6.311,2479,4.991,2480,4.991]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[266,4.837,426,3.412,580,4.751,619,3.014]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[268,3.379,580,4.633,619,2.939,949,4.482]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[15,1.899,21,1.288,27,3.138,38,0.021,51,1.339,59,1.484,66,0.51,74,0.789,77,1.982,80,1.806,90,4.956,99,0.715,108,1.698,115,0.238,122,0.762,128,0.455,143,1.668,152,1.503,154,1.565,195,0.936,266,5.376,267,1.589,268,1.216,269,4.887,277,1.064,287,0.276,297,2.487,309,2.997,318,1.077,352,0.905,418,1.668,509,2.199,512,1.766,516,2.222,580,7.241,592,1.484,604,1.899,619,1.058,650,1.589,753,1.235,861,1.484,1035,1.449,1067,4.942,1111,0.819,1261,3.955,1288,1.322,1294,1.806,1369,2.199,1380,5.151,1397,1.503,1404,2.332,1450,2.021,1858,2.199,2182,2.199,2487,2.332,2488,2.533,2489,2.533,2490,2.533,2491,2.533,2492,2.533]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[191,0.84,287,0.673,412,3.222,1168,3.283,2380,2.899,2381,2.858]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1169,4.231,1485,4.349,1886,5.276,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[38,0.061,82,2.834,104,3.77,115,0.404,119,4.221,191,0.992,238,3.239,352,2.606,382,4.422,416,5.084,670,6.094,1168,5.116]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[89,1.206,287,0.673,412,3.222,1168,3.283,2104,2.743,2239,2.658]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[38,0.087,57,2.074,89,1.805,121,1.381,122,2.066,195,2.537,277,2.884,308,2.786,335,0.979,357,1.678,375,1.5,422,3.296,670,3.884,1324,1.011,1817,3.55]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[287,0.786,791,3.836,2104,3.206,2239,3.106]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[111,1.575,858,3.257,2004,4.61,2486,5.953,2493,6.466]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[79,1.76,1068,4.596,1726,5.594,1923,4.776,2494,5.302,2495,5.759]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1399,5.193,1923,4.959,2496,5.981,2497,5.981,2498,5.981,2499,5.981]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[66,1.023,74,1.251,79,2.713,134,2.354,180,3.626,254,3.018,318,3.181,320,4.058,645,2.231,673,2.499,1068,8.706,1399,7.707,1923,7.36,2154,4.217,2494,10.043,2500,5.086,2501,5.086,2502,5.086]],["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/",[38,0.065,115,0.437,497,4.409]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[499,5.614,500,5.614,502,5.614,2503,6.466,2504,6.466]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[38,0.076,75,2.145,76,2.159,115,0.509,497,6.233]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[73,1.146,99,2.038,1149,3.666,2193,2.521]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[32,1.612,38,0.065,57,1.63,73,1.241,89,1.793,111,1.315,115,0.299,120,1.387,121,0.806,125,1.552,192,1.541,193,1.377,262,1.315,282,1.481,291,2.367,329,1.476,335,0.769,352,3.283,354,1.975,357,1.319,375,1.179,752,1.552,812,2.463,1006,2.034,1140,2.076,1324,0.795,1667,4.046]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[804,0.471]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[128,1.296,791,3.836,2193,2.521,2315,2.896]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[111,1.575,858,3.257,2004,4.61,2505,6.466,2506,6.466]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[21,2.292,32,1.564,33,2.476,38,0.044,90,3.236,91,2.342,115,0.29,125,1.506,133,2.898,185,2.811,262,1.276,282,1.437,290,2.035,308,2.125,331,1.813,335,0.747,352,1.872,354,1.917,362,3.335,474,2.93,752,2.199,791,5.612,812,2.39,1006,1.974,1044,2.93,1324,0.771,1817,2.708,2005,5.45]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[191,0.982,197,4.459,1111,2.333,1144,4.037]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[667,3.343,2361,5.614,2507,6.466,2508,6.466,2509,6.466]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[38,0.073,74,1.231,139,2.648,191,1.188,335,1.245,1144,6.042,1324,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[191,0.982,1111,2.333,1144,4.037,2353,3.952]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[667,3.343,2361,5.614,2510,6.466,2511,6.466,2512,6.466]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[38,0.073,74,1.231,139,2.648,191,1.188,335,1.245,1144,6.042,1324,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[191,0.905,287,0.725,1144,3.723,2104,2.957,2239,2.864]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[667,3.343,1948,5.953,1949,5.16,2513,6.466,2514,6.466]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[38,0.082,74,1.072,121,1.136,139,2.306,150,5.097,191,1.034,335,1.084,357,1.859,667,3.932,1144,5.535,1324,1.12,2314,5.701]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[191,0.905,287,0.725,1144,3.723,2380,3.124,2381,3.08]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[667,3.343,1949,5.16,2515,6.466,2516,6.466,2517,6.466]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[38,0.085,74,1.12,139,2.41,150,5.327,191,1.081,335,1.133,667,4.109,1144,5.694,1324,1.17,2314,5.958]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[5,2.831,31,3.188,51,1.795,812,2.628,881,3.375,1288,3.005,1545,4.107]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[813,4.295,814,4.295,815,4.171,816,3.966,1288,2.903,1546,4.439,1547,4.439]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[5,5.63,38,0.061,81,3.736,115,0.533,282,2.001,290,2.834,291,3.197,354,2.668,418,4.8,812,3.327,881,4.272,1545,5.198]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[804,0.471]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[5,2.831,31,3.188,99,1.627,131,2.405,812,2.628,881,3.375,1545,4.107]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[99,1.571,813,4.295,814,4.295,815,4.171,816,3.966,1546,4.439,1547,4.439]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[5,5.63,38,0.061,81,3.736,115,0.533,282,2.001,290,2.834,291,3.197,354,2.668,418,4.8,812,3.327,881,4.272,1545,5.198]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[804,0.471]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[5,3.035,31,3.418,331,2.138,812,2.818,881,3.619,1545,4.403]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[813,4.617,814,4.617,815,4.484,816,4.264,1546,4.772,1547,4.772]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[5,5.63,38,0.061,81,3.736,115,0.533,282,2.001,290,2.834,291,3.197,354,2.668,418,4.8,812,3.327,881,4.272,1545,5.198]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[51,2.249,73,1.146,1149,3.666,1288,3.765]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[38,0.077,73,1.469,89,1.805,111,1.672,115,0.381,120,1.764,121,1.026,192,1.96,193,1.752,329,1.877,335,0.979,352,2.454,357,1.678,375,1.5,1140,2.641,1324,1.011]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[804,0.471]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[318,2.829,339,4.001,567,4.641,2385,4.99,2518,5.778]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1501,4.349,2518,6.11,2519,7.037,2520,6.479]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[74,1.431,79,3.103,108,4.348,180,4.625,318,2.758,339,3.9,393,4.131,604,4.864,609,4.068,777,5.379,2518,10.265,2521,6.487,2522,5.972]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[79,2.205,416,5.033,933,4.459,2523,5.983]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[318,2.992,1490,5.835,2524,7.037,2525,7.037]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[74,0.987,77,2.48,79,3.227,118,4.883,182,5.113,318,2.977,340,4.209,418,4.609,577,4.992,819,6.079,933,6.524,1040,4.784,2523,7.767]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[79,2.408,567,5.496,867,5.618]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[79,1.976,652,4.61,867,4.61,949,4.118,2520,5.953]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[74,1.007,79,2.183,318,4.036,645,3.133,852,5.216,867,8.434,949,6.046,1068,5.7,2272,5.355,2526,6.202,2527,7.143]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[73,1.146,1111,2.333,1149,3.666,2353,3.952]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[32,1.637,38,0.066,57,1.656,73,1.255,89,1.809,111,1.335,115,0.304,120,1.408,125,1.577,192,1.565,193,1.399,262,1.335,282,1.504,291,2.404,329,1.499,330,3.547,335,0.781,352,3.312,354,2.006,375,1.198,752,1.577,812,2.501,1006,2.066,1111,1.772,1140,2.108,1324,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[73,1.057,287,0.725,1149,3.381,2104,2.957,2239,2.864]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[51,2.016,89,1.262,193,1.65,1149,3.285,1666,3.036]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[32,1.588,38,0.064,57,1.606,73,1.228,89,1.778,111,1.295,115,0.295,120,1.366,121,0.794,125,1.529,192,1.518,193,1.357,262,1.295,282,1.459,287,0.579,291,2.331,329,1.454,330,3.44,335,0.758,352,3.255,354,1.946,357,1.299,375,1.162,752,1.529,812,2.426,1006,2.004,1140,2.045,1324,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[77,2.04,128,1.035,692,4.318,729,2.049,1023,2.16,2193,2.012,2315,2.312]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[516,3.343,729,2.301,1023,2.425,1066,3.887,2316,5.362]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,0.055,66,1.33,102,3.102,115,0.499,120,1.698,121,0.987,262,1.61,329,1.807,335,0.942,357,1.615,729,3.206,730,3.807,746,4.826,1023,3.379,1024,3.873,1324,0.973,2317,5.479]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[804,0.471]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[50,2.766,128,0.969,134,2.497,200,3.162,619,2.254,2193,1.885,2315,2.166,2528,4.686]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[50,3.314,1606,5.362,2528,5.614,2529,6.466,2530,6.466]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[38,0.081,73,0.96,79,1.847,81,3.097,115,0.587,167,4.309,192,1.726,282,1.658,308,2.453,331,2.092,335,0.862,427,3.419,666,1.805,896,4.822,1001,2.923,1324,0.89,2526,5.247,2528,9.2]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[73,1.057,128,1.195,1149,3.381,2193,2.325,2315,2.671]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[39,2.076,51,1.621,89,1.015,193,1.327,1149,2.642,1666,2.441,1801,4.311,1802,2.555]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[32,1.497,38,0.062,57,2.237,73,1.176,89,1.719,111,1.221,115,0.278,120,1.288,121,0.749,125,1.442,128,1.33,192,1.432,193,1.28,262,1.221,282,1.376,291,2.199,329,1.371,335,0.715,352,3.475,354,1.835,357,1.225,375,1.096,752,1.442,812,2.288,981,4.353,1006,1.89,1140,1.929,1324,0.738,2531,5.013]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[119,2.939,192,1.45,193,1.296,287,0.553,1140,1.953,1156,2.495,2033,2.781,2104,2.255,2239,2.185]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1846,3.871,2444,5.506,2445,5.506,2471,4.617,2532,5.506,2533,5.506]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[38,0.069,57,2.514,115,0.581,139,2.524,195,3.075,335,1.186,498,4.424,666,2.485,1324,1.225]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[375,1.35,729,2.197,1023,2.316,1111,1.996,2263,3.455,2353,3.382]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1023,1.831,1344,3.061,1907,3.66,2263,2.731,2534,4.881,2535,3.768,2536,3.768,2537,3.768,2538,3.768]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[38,0.061,57,1.493,66,0.995,74,1.033,81,2.533,115,0.535,121,1.095,122,2.205,139,1.499,195,1.827,283,2.56,329,1.352,335,0.705,341,3.465,375,2.11,382,2.272,644,1.845,730,2.089,739,1.854,1023,3.275,1324,0.728,1561,3.012,2209,3.378,2263,4.099]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[73,0.981,191,0.84,192,1.763,263,3.137,1111,1.996,2353,3.382]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[647,6.16,2356,7.106,2539,7.72]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[38,0.08,73,0.928,102,2.743,115,0.579,120,1.501,144,2.685,191,1.306,196,2.613,275,3.847,277,2.455,308,2.371,329,1.598,335,0.833,338,3.383,422,2.805,590,3.665,878,4.381,919,2.631,1324,0.86,1524,4.166,2357,4.381]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[74,0.87,111,1.504,375,1.35,1032,3.348,1111,1.996,2353,3.382]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1819,5.96,1820,6.401,2540,7.72]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[38,0.063,74,1.072,115,0.548,282,2.087,335,1.084,375,2.403,917,4.7,918,4.043,919,3.423,1324,1.12,1658,5.701]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[804,0.471]],["title//docs/databases/postgresql/fedora-13/",[74,0.87,111,1.504,116,2.708,1032,3.348,1111,1.996,2353,3.382]],["keywords//docs/databases/postgresql/fedora-13/",[1034,4.704,1132,5.175,2541,7.72]],["toc//docs/databases/postgresql/fedora-13/",[38,0.055,66,2.062,111,2.195,115,0.366,116,4.496,121,0.987,126,3.172,155,4.277,262,1.61,283,2.309,335,0.942,608,2.569,919,2.975,1035,3.781,1039,4.351,1324,0.973]],["deprecated//docs/databases/postgresql/fedora-13/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[89,1.299,193,1.698,1111,2.151,1140,2.56,2353,3.645]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[89,1.374,1499,4.124,1500,4.718,2542,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[38,0.061,57,2.203,77,2.582,115,0.597,139,2.211,193,1.861,195,2.694,282,2.001,335,1.039,498,3.876,1140,2.804,1324,1.073,2265,4.719,2352,5.466]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[89,1.299,1111,2.151,1140,2.56,1802,3.271,2353,3.645]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[89,1.374,1499,4.124,1989,4.908,2542,6.11]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[38,0.061,57,2.203,77,2.582,115,0.597,139,2.211,195,2.694,282,2.001,335,1.039,498,3.876,1140,3.702,1324,1.073,1525,5.324,1802,3.583]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[74,0.76,91,2.413,92,3.335,134,2.497,1111,1.745,2052,2.897,2053,3.848,2353,2.956]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[99,1.988,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[38,0.076,74,1.295,335,1.31,1324,1.353,2052,5.981]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[74,0.812,82,2.239,91,2.576,185,3.092,668,2.724,1111,1.862,2353,3.155]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[111,1.714,858,3.545,1009,4.809,2430,5.616]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[32,1.869,38,0.083,66,1.259,74,0.882,77,3.073,88,2.855,125,1.8,248,3.667,262,1.524,308,3.522,335,0.892,426,2.959,666,1.869,668,4.711,752,1.8,1006,2.359,1324,0.921,1817,3.235]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[804,0.471]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[73,0.981,192,1.763,233,3.137,1111,1.996,2033,3.382,2353,3.382]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2033,3.855,2446,6.479,2457,6.11,2543,6.479]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[38,0.058,58,3.557,115,0.388,121,1.046,124,4.391,262,2.282,335,0.998,357,1.711,608,3.641,707,5.789,767,6.401,1324,1.031,2033,5.131]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[804,0.471]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[73,0.981,192,1.763,233,3.137,1111,1.996,2033,3.382,2238,3.382]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2033,3.855,2283,5.835,2543,6.479,2544,7.037]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[38,0.058,58,3.557,115,0.388,121,1.046,124,4.391,262,2.282,335,0.998,357,1.711,608,3.641,707,5.789,767,6.401,1324,1.031,2033,5.131]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[804,0.471]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[128,1.296,2193,2.521,2315,2.896,2545,6.265]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[128,1.162,2545,5.614,2546,6.466,2547,6.466,2548,6.466]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[38,0.076,139,2.786,335,1.31,545,7.33,1324,1.353,2545,7.976]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[197,3.816,375,1.35,729,2.197,1023,2.316,1111,1.996,2263,3.455]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1023,1.831,1344,3.061,1907,3.66,2263,2.731,2535,3.768,2536,3.768,2537,3.768,2538,3.768,2549,4.881]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[38,0.061,57,1.493,66,0.995,74,1.033,81,2.533,115,0.535,121,1.095,122,2.205,139,1.499,195,1.827,283,2.56,329,1.352,335,0.705,341,3.465,375,2.11,382,2.272,644,1.845,730,2.089,739,1.854,1023,3.275,1324,0.728,1561,3.012,2209,3.378,2263,4.099]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[804,0.471]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[86,2.056,125,1.776,287,0.673,1163,3.664,2104,2.743,2239,2.658]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[125,2.459,1163,5.073]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[38,0.089,66,0.981,77,1.727,81,3.717,115,0.48,238,2.166,283,1.703,290,1.895,307,3.476,331,1.688,335,0.695,354,1.784,387,2.857,666,1.456,730,2.06,752,1.402,914,5.787,1024,2.857,1040,3.331,1163,6.784,1322,5.058,1324,0.718,1723,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[73,1.146,722,3.185,1111,2.333,2353,3.952]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1765,5.14,1766,5.276,2550,7.037,2551,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[38,0.085,73,1.269,111,1.946,115,0.643,120,2.053,121,0.832,122,1.675,191,1.087,192,1.59,193,1.421,282,1.528,329,2.185,375,2.232,491,3.603]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[89,1.409,233,3.666,1111,2.333,2353,3.952]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[89,1.168,144,2.748,672,2.988,2368,5.193,2457,5.193,2542,5.193]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[21,1.843,32,1.836,33,2.908,38,0.082,57,1.857,66,1.237,89,2.084,125,1.769,262,1.498,290,2.39,291,2.696,308,2.495,335,0.877,666,1.836,752,1.769,812,2.806,1006,2.318,1324,0.905,1667,4.61,1817,3.179]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[804,0.471]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[73,0.981,125,1.776,287,0.673,2104,2.743,2155,4.403,2239,2.658]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[125,2.459,2155,6.095]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[38,0.062,115,0.64,132,4.211,133,4.12,192,2.126,261,4.036,335,1.061,1324,1.096,2155,8.235]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[20,1.88,21,1.851,287,0.673,2104,2.743,2239,2.658,2261,3.619]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[99,1.88,191,0.905,554,4.113,1275,3.058,2193,2.325]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[38,0.081,82,3.792,115,0.541,121,1.112,191,1.327,238,3.307,352,2.661,357,1.819,766,3.815,1275,4.483]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[191,0.84,287,0.673,554,3.816,1275,2.838,2104,2.743,2239,2.658]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[38,0.082,82,2.956,115,0.548,121,1.136,191,1.034,238,3.378,335,1.084,357,1.859,766,3.897,1275,4.546,1324,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[191,0.84,287,0.673,554,3.816,1275,2.838,2380,2.899,2381,2.858]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[38,0.085,82,3.089,115,0.564,191,1.081,238,3.53,335,1.133,766,4.072,1275,4.677,1324,1.17]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[125,1.657,287,0.627,716,4.107,1921,4.446,2026,4.107,2104,2.559,2239,2.479]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[287,0.704,2026,4.61,2027,5.614,2239,2.783,2471,4.992]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[38,0.073,72,3.182,74,0.898,115,0.557,121,0.952,221,2.927,238,2.83,270,2.32,335,0.908,349,4.542,542,3.995,666,1.902,1320,5.083,1324,0.938,2026,6.264,2028,5.282,2030,4.918,2031,4.27,2552,5.864]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[191,0.84,287,0.673,1275,2.838,2104,2.743,2239,2.658,2553,4.927]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[39,2.221,191,0.757,287,0.606,1275,2.556,2239,2.394,2472,5.121,2554,4.439]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[38,0.055,39,2.638,74,0.931,82,2.569,104,3.417,115,0.366,120,2.315,121,0.987,191,0.899,238,2.936,282,1.814,335,0.942,354,2.419,357,1.615,673,3.248,1275,4.711,1324,0.973,1397,3.921]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[128,1.109,191,0.84,554,3.816,1275,2.838,2193,2.157,2315,2.479]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.809,191,0.957,1275,3.234,1280,4.718]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[38,0.082,82,2.956,115,0.548,121,1.136,191,1.034,238,3.378,335,1.084,357,1.859,766,3.897,1275,4.546,1324,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[804,0.471]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[74,0.76,89,1.054,137,2.294,259,3.764,452,4.046,752,1.552,2394,4.166,2555,4.686]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[89,0.849,137,1.849,144,1.998,191,0.592,271,1.907,453,5.308,672,2.172,2556,4.348,2557,4.348,2558,4.348]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[77,2.385,86,2.242,89,1.315,115,0.373,137,2.863,144,3.095,191,0.916,259,6.365,271,2.953,297,3.899,382,3.095,441,4.049,452,6.842,666,2.011,752,1.937,2000,4.697,2394,5.199,2555,5.847]],["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/",[128,1.035,859,3.668,2193,2.012,2315,2.312,2559,5.759,2560,5.759,2561,5.302]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2562,7.037,2563,7.037,2564,7.037,2565,5.433]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[32,2.133,38,0.079,82,2.776,115,0.396,125,2.055,262,1.74,290,2.776,335,1.018,352,2.553,666,2.133,752,2.731,1006,2.692,1324,1.052,2561,8.739]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[804,0.471]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[262,1.504,287,0.673,693,3.111,859,3.933,2104,2.743,2239,2.658]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[287,0.652,407,3.092,619,2.498,693,3.013,2471,4.617,2566,5.981]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[30,4.811,38,0.038,67,3.58,72,2.278,74,0.643,115,0.382,126,2.189,183,4.262,241,3.181,262,1.68,267,2.86,329,1.247,335,0.65,374,2.742,407,3.567,485,4.203,619,2.881,693,4.191,724,3.446,739,2.587,958,3.252,959,3.252,966,3.252,1063,4.465,1065,2.609,1294,3.252,1324,0.671,1890,3.33,1891,3.419]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[287,0.673,729,2.197,1156,3.035,1978,3.664,2104,2.743,2239,2.658]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1978,3.837,1981,4.418,1982,4.848,2567,6.466,2568,5.953]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[38,0.059,121,1.067,270,2.602,331,3.287,335,1.018,357,1.746,898,5.093,919,3.216,949,4.549,1324,1.052,1601,4.414,1780,4.414,1978,6.328,1983,5.216]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[287,0.588,375,1.179,729,1.92,1023,2.024,1156,2.652,1557,2.842,2104,2.398,2239,2.323]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[287,0.606,729,1.979,1557,2.93,2239,2.394,2568,5.121,2569,5.563,2570,5.563]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[38,0.041,57,1.473,66,0.981,74,0.687,115,0.532,121,1.294,122,2.183,139,2.199,195,1.802,283,2.534,329,1.333,335,0.695,341,3.43,357,1.192,375,1.893,382,2.24,644,1.82,645,2.138,730,2.06,739,1.829,984,2.498,1023,3.248,1324,0.718,1557,2.567,1561,2.971,1562,3.56,2209,3.331]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[211,3.062,287,0.627,906,3.56,2271,4.596,2272,4.318,2380,2.704,2381,2.665]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1034,3.39,2276,4.83,2277,4.439,2278,4.439,2279,4.295,2280,4.439,2571,5.563]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[21,1.781,32,1.774,38,0.07,67,2.557,87,2.453,115,0.329,121,0.888,183,2.73,195,2.196,221,2.73,318,2.526,335,0.847,339,3.572,357,1.452,595,4.236,619,2.481,752,1.709,801,4.339,889,4.236,906,6.5,1324,0.875,2281,6.461]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[211,2.869,287,0.588,906,3.335,1156,2.652,2104,2.398,2239,2.323,2271,4.306,2272,4.046]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1034,3.39,2276,4.83,2277,4.439,2278,4.439,2279,4.295,2280,4.439,2572,5.563]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[21,1.781,32,1.774,38,0.07,67,2.557,87,2.453,115,0.329,121,0.888,183,2.73,195,2.196,221,2.73,318,2.526,335,0.847,339,3.572,357,1.452,595,4.236,619,2.481,752,1.709,801,4.339,889,4.236,906,6.5,1324,0.875,2281,6.461]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[74,0.76,86,1.797,137,2.294,191,0.734,271,2.367,287,0.588,2104,2.398,2239,2.323]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1965,5.496,1966,5.384,2573,6.842]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1966,4.809,2573,6.11,2574,7.037,2575,6.479]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[32,2.428,38,0.086,125,2.339,262,1.98,335,1.159,666,2.428,752,2.339,1006,3.064,1324,1.197,2573,7.058]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1366,5.983,1965,5.033,1966,6.531]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[722,2.854,1366,5.362,2575,5.953,2576,6.466,2577,6.466]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[38,0.093,335,1.31,666,2.744,1324,1.353,1366,7.617]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[804,0.471]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[287,0.588,729,1.92,991,2.267,1156,2.652,1342,3.553,2104,2.398,2239,2.323,2324,4.306]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1560,4.264,2328,4.772,2329,4.772,2578,5.981,2579,5.981,2580,5.506]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[32,2.223,38,0.081,57,2.249,79,2.275,125,2.141,262,1.813,282,2.043,335,1.061,666,2.914,752,2.141,1006,2.806,1324,1.096,1342,4.901]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[86,1.797,287,0.588,1156,2.652,1243,3.088,1950,3.202,1951,3.493,2104,2.398,2239,2.323]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1950,2.897,1952,3.565,1953,3.214,1954,3.214,1955,3.159,1956,3.159,1995,3.214,2294,4.047,2581,4.881]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[38,0.086,115,0.451,121,1.215,268,3.903,335,1.159,439,4.954,666,2.428,1324,1.197,1950,6.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[21,2.163,192,2.061,673,3.546,2582,6.265]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[193,1.65,634,5.614,637,3.887,1142,4.257,2582,5.614]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[32,2.428,38,0.086,125,2.339,262,1.98,335,1.159,666,2.428,752,2.339,1006,3.064,1324,1.197,2582,7.058]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[804,0.471]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[73,0.915,104,2.978,192,1.645,287,0.627,1972,3.188,2104,2.559,2239,2.479]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[191,0.957,1972,3.895,1973,5.14,1974,5.018]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[89,1.124,287,0.627,1140,2.216,1156,2.831,1802,2.831,2104,2.559,2239,2.479]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[89,1.262,1499,3.789,1987,4.992,1989,4.51,2583,5.614]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[38,0.079,57,1.453,61,4.726,66,0.968,89,0.939,102,2.258,113,3.816,115,0.528,120,1.236,121,0.718,139,1.458,195,1.777,270,1.752,287,0.782,329,1.315,335,0.686,357,1.175,444,1.695,498,2.557,1140,1.85,1324,0.708,1395,3.016,1501,2.972,1758,4.175,1759,5.952,1802,2.363,2265,3.113,2352,3.605,2584,7.178,2585,4.809]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[82,1.863,191,0.652,193,1.223,287,0.522,331,1.659,1156,2.355,1220,2.653,2104,2.129,2239,2.063,2374,3.417]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1666,2.612,1834,3.801,1835,3.801,2377,4.063,2378,4.063,2586,5.563,2587,5.563]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[38,0.057,115,0.381,121,1.026,146,5.3,191,1.258,193,2.36,196,3.07,221,3.155,270,3.368,335,0.979,357,1.678,1220,3.8,1243,3.928,1324,1.011,1837,5.147,2031,4.602]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[73,0.857,287,0.588,730,2.281,1024,3.162,1156,2.652,1961,3.202,2104,2.398,2239,2.323]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1344,3.489,1961,3.301,1963,4.171,1964,4.171,2214,4.83,2215,4.613,2588,5.563]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[38,0.062,57,2.249,86,2.478,115,0.541,121,1.112,139,2.258,142,3.958,195,2.751,335,1.061,357,1.819,730,4.123,1324,1.096,1961,4.417]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[21,1.851,200,3.619,303,3.997,2255,6.638,2589,5.684]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2259,5.16,2590,6.466,2591,5.953,2592,6.466,2593,6.466]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[32,2.373,38,0.085,125,2.286,262,1.936,335,1.133,666,2.373,752,2.286,1006,2.995,1324,1.17,2255,6.135,2589,7.315]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[804,0.471]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[21,1.995,200,3.9,303,4.307,2255,5.138,2594,5.778]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2259,5.616,2591,6.479,2594,6.11,2595,7.037]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[32,2.428,38,0.086,125,2.339,262,1.98,335,1.159,666,2.428,752,2.339,1006,3.064,1324,1.197,2594,7.058]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[74,0.715,91,2.27,92,3.137,134,2.349,287,0.553,2052,2.725,2053,3.62,2104,2.255,2239,2.185]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[287,0.767,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[38,0.076,74,1.295,335,1.31,1324,1.353,2052,5.981]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[74,0.76,82,2.098,91,2.413,185,2.897,287,0.588,668,2.552,2104,2.398,2239,2.323]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[111,1.714,668,3.328,858,3.545,1009,4.809]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[32,2.011,38,0.056,66,1.355,74,0.949,77,3.232,88,3.073,125,1.937,248,3.946,262,1.641,308,3.704,335,0.96,426,3.185,668,4.316,752,1.937,1006,2.538,1324,0.992,1817,3.482]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[74,0.715,142,2.699,287,0.553,444,1.79,1156,2.495,2056,2.699,2057,3.469,2104,2.255,2239,2.185]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[444,2.109,794,3.751,2056,3.18,2058,4.772,2059,4.368,2060,3.211]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[73,0.857,192,1.541,233,2.742,287,0.588,1156,2.652,2033,2.956,2104,2.398,2239,2.323]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1846,4.185,2033,3.542,2471,4.992,2532,5.953,2533,5.953]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[38,0.055,57,1.996,58,3.357,115,0.366,121,0.987,124,4.144,262,2.195,291,2.898,335,0.942,357,1.615,608,3.502,707,5.568,767,6.156,984,3.387,1324,0.973,2033,4.935]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[21,1.522,53,2.939,73,0.806,116,2.226,126,2.437,262,1.237,298,3.052,587,3.013,2596,3.919]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2039,5.16,2596,4.992,2597,6.466,2598,5.953,2599,5.953]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[38,0.074,74,1.262,115,0.496,612,4.004,1065,5.123,2596,8.467]],["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/",[74,0.76,111,1.315,287,0.588,375,1.179,1032,2.926,1156,2.652,2104,2.398,2239,2.323]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1437,4.633,2061,5.433,2062,5.14,2600,7.037]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[38,0.068,74,1.146,77,2.879,115,0.572,282,2.231,335,1.159,375,2.48,1324,1.197]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[73,0.857,191,0.734,192,1.541,263,2.742,287,0.588,1156,2.652,2104,2.398,2239,2.323]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[191,0.814,672,2.988,1973,4.368,2601,5.981,2602,5.981,2603,5.981]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[38,0.084,115,0.487,120,1.637,121,0.952,134,2.948,191,1.195,196,3.929,244,3.603,263,3.236,277,2.676,308,2.585,329,1.742,335,0.908,357,1.557,422,3.058,642,3.058,1324,0.938,1452,4.443]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[287,0.725,1001,3.219,1156,3.271,2104,2.957,2239,2.864]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2196,6.401,2197,6.401,2604,7.72]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[282,2.589,939,7.071,1001,4.563,2102,7.82,2415,8.189]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[21,1.727,287,0.627,330,3.728,669,3.51,1156,2.831,2104,2.559,2239,2.479]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[669,3.94,2220,5.16,2221,5.16,2222,5.16,2605,6.466]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[32,1.612,38,0.065,57,1.63,66,1.086,86,1.797,89,1.054,111,1.315,115,0.558,121,0.806,125,1.552,137,2.294,139,1.637,191,0.734,262,1.315,277,2.267,335,0.769,343,3.764,357,1.319,669,5.597,670,3.053,729,1.92,752,1.552,1006,2.034,1109,3.764,1168,2.869,1324,0.795,2223,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[74,0.76,111,1.315,116,2.367,287,0.588,1032,2.926,1156,2.652,2104,2.398,2239,2.323]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[116,2.623,1033,4.772,1034,3.645,1132,4.009,2606,5.981,2607,5.981]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[38,0.072,66,2.004,111,2.114,115,0.347,116,4.369,121,0.935,126,3.004,155,4.05,262,1.524,283,2.186,335,0.892,608,2.432,919,2.817,1035,3.58,1039,4.119,1324,0.921,2068,4.83,2069,4.83]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[89,1.206,233,3.137,287,0.673,1156,3.035,2104,2.743,2239,2.658]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[89,1.086,144,2.556,287,0.606,672,2.779,2471,4.295,2583,4.83,2608,5.563]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[21,1.781,32,1.774,33,2.81,38,0.08,57,1.795,66,1.195,89,2.053,121,0.888,125,1.709,262,1.447,287,0.647,290,2.309,291,2.606,308,2.411,335,0.847,357,1.452,666,1.774,752,1.709,812,2.711,1006,2.24,1324,0.875,1817,3.072]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[110,5.145,619,3.014,1652,6.265,2609,5.983]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2609,5.835,2610,6.479,2611,6.479,2612,6.479]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[38,0.068,51,1.118,53,2.077,58,2.908,74,0.807,109,2.502,110,2.558,115,0.317,120,0.922,134,1.66,231,2.69,255,6.876,275,2.362,282,1.571,298,2.157,342,2.558,441,2.157,587,2.129,619,3.404,651,3.115,724,1.792,861,2.102,879,3.303,883,2.863,968,3.115,1403,3.303,1501,2.217,1639,3.303,1976,3.303,2060,1.926,2406,3.303,2407,3.303,2442,5.269,2609,8.841,2611,3.303,2612,3.303,2613,3.588,2614,3.588,2615,3.588,2616,3.588,2617,3.588,2618,3.588,2619,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/",[58,2.926,74,0.812,111,1.403,116,2.526,126,2.765,608,2.239,2596,4.446]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2039,4.772,2596,4.617,2598,5.506,2599,5.506,2620,5.981,2621,5.981]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[38,0.074,74,1.262,115,0.496,612,4.004,1065,5.123,2596,8.467]],["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/",[128,1.035,729,2.049,991,2.42,1342,3.792,2193,2.012,2315,2.312,2324,4.596]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1560,4.264,2327,5.506,2328,4.772,2329,4.772,2622,5.981,2623,5.981]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[32,2.223,38,0.081,57,2.249,79,2.275,125,2.141,262,1.813,282,2.043,335,1.061,666,2.914,752,2.141,1006,2.806,1324,1.096,1342,4.901]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[804,0.471]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[21,1.995,33,3.147,52,3.949,426,3.147,2624,5.778]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1183,4.014,1604,4.149,1605,4.149,2624,4.515,2625,5.2,2626,4.787,2627,4.787,2628,5.2]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[17,4.065,33,2.633,38,0.046,66,1.88,79,2.442,126,2.672,142,2.96,221,3.672,242,4.442,392,4.616,641,2.96,650,3.491,673,3.927,1394,4.833,1791,6.168,1883,6.937,2385,4.174,2448,3.969,2487,5.124,2624,8.868,2629,5.124]],["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/",[86,1.797,287,0.588,352,1.929,1297,4.306,1353,3.941,1745,4.166,2380,2.533,2381,2.497]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1297,4.439,1353,4.063,1357,4.83,1745,4.295,2630,5.563,2631,5.563,2632,5.563]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[5,2.574,38,0.082,66,1.538,115,0.55,121,0.782,122,1.576,196,2.342,211,4.064,214,2.996,283,1.83,290,2.035,291,2.297,320,4.179,335,0.747,475,3.148,479,3.389,666,1.564,722,2.311,753,2.553,881,3.069,1324,0.771,1353,5.583,1365,4.821,1745,5.901,1749,4.821]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[86,2.056,125,1.776,128,1.109,1163,3.664,2193,2.157,2315,2.479]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[125,2.459,1163,5.073]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[38,0.088,77,1.855,81,3.918,115,0.5,290,2.035,307,3.734,331,1.813,335,0.747,354,1.917,387,3.069,666,1.564,730,2.213,752,1.506,914,6.1,1024,3.069,1163,6.924,1322,5.331,1324,0.771,1723,3.652]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[89,1.124,193,1.47,287,0.627,1140,2.216,1156,2.831,2104,2.559,2239,2.479]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[89,1.374,1499,4.124,1500,4.718,2583,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,2.373,38,0.048,57,1.737,61,5.382,66,1.156,86,1.914,102,2.698,113,4.346,115,0.527,120,1.477,121,0.859,139,1.743,193,1.467,195,2.124,262,1.4,270,2.094,329,1.572,335,0.82,357,1.405,572,3.784,1140,2.211,1324,0.846,1395,3.605,1497,3.605,1501,3.552]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[804,0.471]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[79,2.408,2633,7.254,2634,6.842]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[128,1.162,156,3.618,2565,4.992,2634,5.614,2635,6.466]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[20,2.132,38,0.078,51,2.182,99,1.978,128,1.258,142,3.722,287,0.763,542,4.391,1111,2.263,1288,3.653,2104,3.111,2193,3.273,2239,3.013,2315,2.81,2634,8.133]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[804,0.471]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[111,1.758,122,2.172,154,4.459,375,1.577]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[156,4.319,375,1.687,2636,7.106]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[21,1.174,66,1.87,72,2.577,74,1.206,79,0.694,91,2.307,102,1.838,111,1.494,156,5.871,164,5.969,182,5.916,263,3.116,277,3.595,282,1.075,375,1.653,391,6.961,860,2.534,897,1.973,1035,4.327,1497,1.425,1658,1.704,1921,3.023,2636,5.646,2637,2.272,2638,6.917,2639,6.134,2640,3.915,2641,3.915,2642,2.272,2643,2.092,2644,2.272]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[20,1.88,21,1.851,128,1.109,2193,2.157,2261,3.619,2315,2.479]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[804,0.471]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[20,1.88,21,1.851,287,0.673,2261,3.619,2380,2.899,2381,2.858]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1099,3.94,2186,4.61,2187,4.61,2261,3.789,2262,4.848]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[28,2.696,32,2.334,38,0.093,125,1.552,191,0.734,193,1.377,238,2.398,262,1.315,282,1.481,335,0.769,375,1.179,752,1.552,1006,2.034,1023,2.024,1324,0.795,1325,3.553,1780,3.335,1814,2.816,2261,3.162,2263,3.019,2264,4.046,2265,3.493,2266,4.046,2267,4.046,2268,4.046,2269,4.046,2270,3.553]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[804,0.471]],["title//docs/websites/wikis/dokuwiki-engine/",[2645,7.989,2646,8.678]],["keywords//docs/websites/wikis/dokuwiki-engine/",[193,1.97,2013,4.641,2647,7.72]],["toc//docs/websites/wikis/dokuwiki-engine/",[32,2.545,38,0.088,125,2.451,262,2.076,666,2.545,752,2.451,1006,3.212,2645,7.844]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[21,1.851,287,0.673,375,1.35,1814,3.222,2380,2.899,2381,2.858]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[162,5.018,287,0.767,375,1.538,1814,3.672]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[38,0.077,79,2.098,115,0.512,139,2.082,191,0.934,221,3.155,262,1.672,265,4.788,270,2.501,354,2.513,590,4.306,644,2.562,1814,5.835,2648,6.32]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[21,1.995,192,1.9,193,1.698,673,3.271,2649,6.126]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[637,4.231,722,3.106,2650,7.037,2651,7.037]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[32,2.373,38,0.085,125,2.286,193,2.028,262,1.936,335,1.133,666,2.373,752,2.286,1006,2.995,1324,1.17,2649,7.315]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[804,0.471]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[99,2.226,2193,2.753,2270,5.188]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[99,1.689,1074,3.596,1596,4.772,1622,3.645,2270,3.937,2652,5.506]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[38,0.08,66,1.176,102,2.743,115,0.458,120,1.501,121,0.873,139,1.772,166,3.424,191,0.795,195,2.159,262,1.423,308,2.371,329,1.598,343,4.075,357,1.428,531,3.847,752,1.681,1497,3.665,1813,4.166,2270,7.532]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[804,0.471]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[128,1.296,1281,4.178,2193,2.521,2315,2.896]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.809,1281,4.074,1666,3.304,2006,5.276]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[38,0.084,66,1.305,77,2.298,81,3.324,82,3.946,111,1.58,121,0.969,335,0.925,352,2.319,357,1.585,666,1.937,1281,6.627,1324,0.955,2007,5.176]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[804,0.471]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[21,2.163,196,3.227,2653,6.642,2654,6.642]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1802,3.794,2653,7.106,2655,7.72]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[38,0.096,57,2.249,74,1.049,77,2.637,78,5.436,126,3.574,238,3.307,335,1.061,338,4.31,2654,8.981,2656,7.444]],["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/",[66,1.086,74,0.76,128,0.969,413,3.848,2016,3.553,2017,3.493,2193,1.885,2315,2.166]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[413,4.61,985,4.722,990,4.992,2016,4.257,2017,4.185]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[38,0.068,77,2.879,115,0.629,331,2.815,752,2.339,2016,5.352,2017,7.345]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[99,1.88,1965,4.641,1966,4.547,1967,4.055,2193,2.325]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[193,1.796,1666,3.304,1967,4.289,1968,5.14]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[32,2.485,115,0.461,125,2.394,262,2.027,290,3.234,527,5.933,666,2.485,752,2.394,1006,3.136,1967,5.07]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[804,0.471]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[21,1.727,74,0.812,90,3.56,312,3.861,317,4.107,705,3.792,1726,3.935]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[51,2.016,312,4.335,705,4.257,891,4.51,2657,6.466]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[21,1.981,31,3.658,38,0.055,74,0.931,77,2.341,314,5.479,317,4.712,318,2.81,393,4.209,418,4.351,612,2.955,705,8.01,1726,4.515,2385,4.955,2658,6.608]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2012,5.526]],["keywords//docs/websites/wikis/twiki/",[415,4.231,1802,3.459,2012,4.027,2013,4.231]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[804,0.471]],["title//docs/applications/messaging/advanced-irssi-usage/",[78,5.755,441,4.737,2659,6.288]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1459,4.617,1723,4.171,1724,5.193,1725,5.193,2659,4.772,2660,5.506]],["toc//docs/applications/messaging/advanced-irssi-usage/",[74,1.201,151,7.066,183,3.916,335,1.215,387,4.994,1324,1.255,1450,6.8,1466,6.8,1561,5.193]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[74,0.938,607,5.518,1029,5.518,1459,5.138,2659,5.31]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1459,4.617,1723,4.171,1724,5.193,1725,5.193,2659,4.772,2660,5.506]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[11,1.985,21,2.152,38,0.04,58,3.647,77,1.703,78,3.512,95,3.987,115,0.476,283,1.68,318,2.045,387,2.818,418,4.726,619,2.998,630,5.952,641,2.557,666,1.436,947,4.175,1024,2.818,1243,2.752,1723,5.006,1729,4.427,1731,6.608,2385,3.605,2659,8.132,2661,4.809,2662,4.809,2663,4.809,2664,4.809]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[74,0.812,82,2.239,91,2.576,99,1.627,185,3.092,668,2.724,2193,2.012]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[111,1.714,668,3.328,858,3.545,1009,4.809]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[32,1.869,38,0.083,66,1.259,74,0.882,77,3.073,88,2.855,125,1.8,248,3.667,262,1.524,308,3.522,335,0.892,426,2.959,666,1.869,668,4.711,752,1.8,1006,2.359,1324,0.921,1817,3.235]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[74,0.76,82,2.098,91,2.413,185,2.897,287,0.588,668,2.552,2380,2.533,2381,2.497]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[111,1.714,858,3.545,1009,4.809,2430,5.616]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[32,2.011,38,0.056,66,1.355,74,0.949,77,3.232,88,3.073,125,1.937,248,3.946,262,1.641,308,3.704,335,0.96,426,3.185,668,4.316,752,1.937,1006,2.538,1324,0.992,1817,3.482]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[74,0.76,86,1.797,128,0.969,137,2.294,191,0.734,271,2.367,2193,1.885,2315,2.166]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[73,0.808,74,0.717,86,1.693,123,3.018,137,3.181,143,3.348,147,2.704,154,3.143,160,3.292,191,0.692,271,2.231,335,0.725,352,1.818,542,3.19,576,3.143,597,3.547,622,3.626,673,4.362,1066,3.058,1324,0.749,1397,4.44,1623,3.348,1972,2.815,2021,6.993,2022,3.626,2023,3.714,2024,3.714,2025,3.714,2394,3.926]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[74,0.76,86,1.797,137,2.294,191,0.734,271,2.367,287,0.588,2380,2.533,2381,2.497]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[197,4.87,1111,2.547,2019,4.316]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[50,2.851,415,3.344,1111,1.798,1802,2.734,2013,3.344,2019,3.047,2450,4.439]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[38,0.057,74,1.303,115,0.512,254,4.074,335,0.979,384,4.243,441,4.127,616,3.841,1324,1.011,1601,4.243,2019,6.586,2451,5.961]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[804,0.471]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[287,0.786,2019,3.952,2380,3.388,2381,3.339]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[50,2.851,287,0.606,415,3.344,1802,2.734,2013,3.344,2019,3.047,2381,2.574]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[38,0.057,74,1.303,115,0.512,254,4.074,335,0.979,384,4.243,441,4.127,616,3.841,1324,1.011,1601,4.243,2019,6.586,2451,5.961]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[74,0.812,82,2.239,91,2.576,185,3.092,197,3.56,668,2.724,1111,1.862]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[111,1.714,858,3.545,1009,4.809,2430,5.616]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[32,1.869,38,0.083,66,1.259,74,0.882,77,3.073,88,2.855,125,1.8,248,3.667,262,1.524,308,3.522,335,0.892,426,2.959,666,1.869,668,4.711,752,1.8,1006,2.359,1324,0.921,1817,3.235]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[74,0.812,86,1.918,99,1.627,137,2.449,191,0.784,271,2.526,2193,2.012]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[73,0.832,74,0.738,86,1.743,123,3.107,137,3.25,143,3.448,147,2.784,154,3.236,160,3.389,191,0.712,271,2.297,352,1.872,542,3.284,576,3.236,597,3.652,622,3.734,673,4.437,1066,3.148,1397,4.536,1623,3.448,1972,2.898,2021,7.076,2022,3.734,2023,3.824,2024,3.824,2025,3.824,2394,4.043]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[21,1.618,287,0.588,475,3.244,729,1.92,1726,3.687,2044,3.289,2380,2.533,2381,2.497]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[38,0.063,115,0.645,120,1.954,329,2.08,335,1.084,576,4.7,730,3.214,1324,1.12,2044,6.7]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1965,5.496,1966,5.384,2665,6.842]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[193,1.796,1666,3.304,1968,5.14,2665,6.11]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[32,2.485,38,0.069,125,2.394,262,2.027,335,1.186,666,2.485,752,2.394,1006,3.136,1324,1.225,2665,7.224]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[804,0.471]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[38,0.048,51,1.795,85,4.107,542,3.612,1965,4.017,1966,3.935,2666,5.001]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[193,1.796,1666,3.304,1968,5.14,2666,6.11]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[38,0.083,666,2.976,2666,8.651]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[996,3.837]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[89,1.299,193,1.698,197,4.113,1111,2.151,1140,2.56]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[89,1.374,1499,4.124,1500,4.718,2667,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[38,0.061,57,2.203,77,2.582,115,0.597,139,2.211,193,1.861,195,2.694,282,2.001,335,1.039,498,3.876,1140,2.804,1324,1.073,2265,4.719,2352,5.466]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[89,1.299,197,4.113,1111,2.151,1140,2.56,1802,3.271]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[89,1.374,1499,4.124,1989,4.908,2667,6.11]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[38,0.059,57,2.158,77,2.53,115,0.591,120,1.835,139,2.166,195,2.64,282,1.96,329,1.953,335,1.018,1140,3.652,1324,1.052,1525,5.216,1802,3.51]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[804,0.471]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[74,0.812,86,1.918,137,2.449,191,0.784,197,3.56,271,2.526,1111,1.862]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[137,2.749,191,0.88,271,2.836,1679,4.257,2020,4.722]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[73,0.82,74,0.727,86,1.718,123,3.062,137,3.215,143,3.397,147,2.743,149,3.679,160,3.34,191,0.702,271,2.263,335,0.736,352,1.845,542,3.236,576,3.189,597,3.599,622,3.679,673,4.399,1066,3.102,1324,0.76,1397,4.488,1623,3.397,1972,2.856,2021,7.034,2022,3.679,2023,3.768,2024,3.768,2025,3.768]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[287,0.627,375,1.259,729,2.049,1023,2.16,1557,3.033,2380,2.704,2381,2.665]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1560,4.61,2668,5.953,2669,6.466,2670,6.466,2671,6.466]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[38,0.04,57,1.453,66,0.968,74,0.678,77,1.703,115,0.565,121,1.072,122,2.16,139,2.177,195,1.777,282,1.32,283,2.508,329,1.315,335,0.686,341,3.395,375,1.877,382,2.21,644,1.795,645,2.109,730,2.032,739,1.804,984,2.464,1023,3.221,1324,0.708,1557,2.532,1561,2.93,1562,3.512,2209,3.286]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[99,1.88,191,0.905,263,3.381,644,2.484,739,2.496]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[672,2.988,856,4.171,993,4.772,1675,4.087,1676,5.506,2672,4.959]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[191,0.84,197,3.816,263,3.137,644,2.305,739,2.316,1111,1.996]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[672,3.516,1675,4.809,1677,6.11,2450,5.616]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[804,0.471]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[191,0.784,263,2.926,287,0.627,644,2.15,739,2.16,2380,2.704,2381,2.665]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[287,0.606,644,2.076,1675,3.801,1681,5.121,1846,3.601,2461,4.439,2673,4.613]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[99,1.88,262,1.621,693,3.352,859,4.238,991,2.796]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[99,1.988,407,3.639,619,2.939,693,3.545]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[30,4.907,38,0.039,67,3.638,72,2.338,74,0.66,115,0.39,126,2.247,183,4.319,241,3.265,262,1.714,267,2.936,329,1.28,374,2.814,407,3.638,485,4.287,619,2.938,693,4.257,724,3.514,739,2.639,958,3.338,959,3.338,966,3.338,1063,4.554,1065,2.679,1294,3.338,1890,3.419,1891,3.51]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[89,1.409,99,2.038,233,3.666,2193,2.521]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[89,1.168,99,2.375,144,2.748,672,2.988,2672,4.959]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[21,1.781,32,1.774,33,2.81,38,0.08,57,1.795,66,1.195,89,2.053,121,0.888,125,1.709,262,1.447,290,2.309,291,2.606,308,2.411,335,0.847,357,1.452,666,1.774,752,1.709,812,2.711,1006,2.24,1324,0.875,1667,4.454,1817,3.072]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[804,0.471]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[115,0.437,191,1.072,390,6.083]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[115,0.428,191,1.05,1679,5.082]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[79,2.324,102,3.57,277,4.892,477,5.87,590,4.769,1382,5.87,2272,5.701,2299,6.602,2526,6.602,2674,7.604,2675,7.604]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[21,2.163,191,0.982,716,5.145,2676,6.265]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[21,1.668,79,1.7,144,2.556,191,0.757,677,5.121,716,3.966,2676,4.83]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[66,2.063,1561,6.248]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[804,0.471]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[128,1.109,262,1.504,693,3.111,859,3.933,2193,2.157,2315,2.479]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[128,1.162,407,3.343,619,2.701,693,3.257,2315,2.595]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[30,4.811,38,0.038,67,3.58,72,2.278,74,0.643,115,0.382,126,2.189,183,4.262,241,3.181,262,1.68,267,2.86,329,1.247,335,0.65,374,2.742,407,4.302,485,4.203,619,2.881,693,3.475,724,3.446,739,2.587,958,3.252,959,3.252,966,3.252,1063,4.465,1065,2.609,1294,3.252,1324,0.671,1890,3.33,1891,3.419]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[804,0.471]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[262,1.504,287,0.673,693,3.111,859,3.933,2380,2.899,2381,2.858]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[287,0.652,407,3.092,619,2.498,693,3.013,2461,4.772,2673,4.959]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[30,4.811,38,0.038,67,3.58,72,2.278,74,0.643,115,0.382,126,2.189,183,4.262,241,3.181,262,1.68,267,2.86,329,1.247,335,0.65,374,2.742,407,3.567,485,4.203,619,2.881,693,4.191,724,3.446,739,2.587,958,3.252,959,3.252,966,3.252,1063,4.465,1065,2.609,1294,3.252,1324,0.671,1890,3.33,1891,3.419]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[89,1.299,128,1.195,233,3.381,2193,2.325,2315,2.671]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[89,1.168,128,1.074,144,2.748,672,2.988,2565,4.617,2677,5.506]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[21,1.781,32,1.774,33,2.81,38,0.08,57,1.795,66,1.195,89,2.053,121,0.888,125,1.709,128,1.067,262,1.447,290,2.309,291,2.606,308,2.411,335,0.847,357,1.452,666,1.774,752,1.709,812,2.711,1006,2.24,1324,0.875,1817,3.072]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[89,1.409,197,4.459,233,3.666,1111,2.333]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[89,1.168,144,2.748,672,2.988,2368,5.193,2450,4.772,2667,5.193]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[21,1.843,32,1.836,33,2.908,38,0.082,57,1.857,66,1.237,89,2.084,125,1.769,262,1.498,290,2.39,291,2.696,308,2.495,335,0.877,666,1.836,752,1.769,812,2.806,1006,2.318,1324,0.905,1667,4.61,1817,3.179]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-centos-5/",[99,2.226,2035,4.458,2193,2.753]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[99,1.571,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2678,5.563]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[32,2.011,38,0.056,73,1.07,115,0.506,120,1.73,121,1.006,125,1.937,192,1.923,193,1.719,262,1.641,329,1.842,356,3.651,491,4.359,666,2.011,752,1.937,771,4.601,1006,2.538,2035,5.162]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[89,1.206,287,0.673,412,3.222,1168,3.283,2380,2.899,2381,2.858]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[38,0.089,57,2.158,89,1.853,121,1.067,122,2.15,195,2.64,277,3.001,308,2.899,335,1.018,375,1.561,422,3.429,670,4.041,1324,1.052,1817,3.693]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[82,1.973,191,0.691,193,1.296,287,0.553,331,1.758,1220,2.81,2374,3.62,2679,3.403,2680,3.342]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[38,0.063,115,0.421,146,5.87,191,1.346,193,2.525,196,3.401,270,2.77,335,1.084,1220,4.209,1243,4.351,1324,1.12,1837,5.701]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[74,0.76,91,2.413,92,3.335,99,1.524,134,2.497,2052,2.897,2053,3.848,2193,1.885]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[99,1.988,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[38,0.081,74,1.366,2052,6.175]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[74,0.715,91,2.27,92,3.137,134,2.349,287,0.553,2052,2.725,2053,3.62,2380,2.383,2381,2.349]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[287,0.767,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[38,0.085,74,1.12,221,3.652,270,2.895,335,1.133,752,2.286,1324,1.17,2031,5.327,2052,6.028]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[82,1.973,191,0.691,193,1.296,287,0.553,331,1.758,1220,2.81,2374,3.62,2380,2.383,2381,2.349]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[38,0.059,115,0.396,146,5.514,191,1.292,193,2.423,196,3.194,221,3.282,270,3.458,335,1.018,1220,3.954,1243,4.087,1324,1.052,1837,5.355,2031,4.788]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[21,1.618,128,0.969,200,3.162,2193,1.885,2254,3.848,2255,4.166,2256,4.686,2315,2.166]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[200,3.789,2254,4.61,2258,5.614,2259,5.16,2681,6.466]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[32,2.321,38,0.083,115,0.431,125,2.236,262,1.893,335,1.108,666,2.321,752,2.236,1006,2.929,1324,1.144,2254,7.153]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[804,0.471]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[21,1.618,128,0.969,475,3.244,729,1.92,1726,3.687,2044,3.289,2193,1.885,2315,2.166]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[729,2.504,1023,2.64,2044,4.289,2045,5.433]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[38,0.061,115,0.635,120,1.873,121,1.089,329,1.994,335,1.039,357,1.782,576,4.506,730,3.081,1324,1.073,2044,6.564]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[128,1.035,375,1.259,729,2.049,1023,2.16,1557,3.033,2193,2.012,2315,2.312]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[128,1.162,729,2.301,1023,2.425,1557,3.405,2315,2.595]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[38,0.041,57,1.473,66,0.981,74,0.687,115,0.532,121,1.294,122,2.183,139,2.199,195,1.802,283,2.534,329,1.333,335,0.695,341,3.43,357,1.192,375,1.893,382,2.24,644,1.82,645,2.138,730,2.06,739,1.829,984,2.498,1023,3.248,1324,0.718,1557,2.567,1561,2.971,1562,3.56,2209,3.331]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[74,0.715,91,2.27,92,3.137,128,0.912,134,2.349,2052,2.725,2053,3.62,2193,1.774,2315,2.038]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[128,1.264,858,3.545,2052,3.778,2054,5.018]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[38,0.076,74,1.295,335,1.31,1324,1.353,2052,5.981]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[287,0.786,2380,3.388,2381,3.339,2426,5.571]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[185,3.211,742,4.171,2426,4.617,2682,5.506,2683,7.74]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[32,2.223,38,0.081,115,0.413,125,2.141,192,2.126,262,1.813,335,1.061,644,2.778,666,2.223,739,2.792,752,2.141,1006,2.806,1324,1.096,1809,5.436]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[191,0.84,287,0.673,1275,2.838,2380,2.899,2381,2.858,2553,4.927]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[39,2.221,191,0.757,287,0.606,1275,2.556,2381,2.574,2461,4.439,2554,4.439]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[38,0.057,39,2.741,74,0.967,82,2.668,104,3.55,115,0.381,120,2.376,191,0.934,221,3.155,238,3.05,270,2.501,335,0.979,673,3.374,1275,4.248,1324,1.011,1397,4.074,2648,6.32]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[287,0.786,1018,4.837,2380,3.388,2381,3.339]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[185,3.211,742,4.171,1018,4.009,2682,5.506,2683,7.74]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[38,0.094,134,3.762,192,2.321,335,1.159,644,3.034,666,2.428,739,3.049,1018,5.449,1324,1.197]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[608,2.4,612,2.762,915,4.307,2052,3.315,2055,5.12,2684,5.684]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[58,2.642,191,0.707,612,2.325,1256,4.787,2041,3.797,2052,2.791,2055,4.311,2685,5.2]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[67,3.854,192,2.557,376,7.145,608,3.48,612,4.004,2055,7.424,2686,8.953]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[73,0.981,99,1.744,104,3.193,192,1.763,1972,3.418,2193,2.157]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[191,0.957,1972,3.895,1974,5.018,2687,7.037]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[137,4.877,196,3.721,270,3.031,338,4.817,341,3.935,718,5.478,1135,6.386]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[804,0.471]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[73,0.981,104,3.193,192,1.763,197,3.816,1111,1.996,1972,3.418]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[191,0.957,1972,3.895,1974,5.018,2302,6.479]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[804,0.471]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[73,0.915,104,2.978,192,1.645,287,0.627,1972,3.188,2380,2.704,2381,2.665]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[191,0.957,1972,3.895,1973,5.14,1974,5.018]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[99,1.88,191,0.905,1275,3.058,2193,2.325,2553,5.31]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.581,99,1.826,191,0.88,1275,2.971,2554,5.16]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[38,0.076,74,0.949,82,2.617,104,3.482,111,1.641,115,0.373,120,2.345,121,1.006,191,0.916,335,0.96,357,1.646,422,3.233,673,3.31,1275,4.757,1324,0.992,1397,3.996]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[804,0.471]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[99,1.744,1566,4.767,1788,4.767,2193,2.157,2448,4.403,2449,4.51]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[99,1.988,729,2.504,1981,4.809,2448,5.018]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[38,0.074,115,0.608,608,3.48,2449,8.659]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[82,2.098,99,1.524,191,0.734,193,1.377,331,1.869,1220,2.987,2193,1.885,2374,3.848]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[38,0.068,115,0.451,121,1.215,191,1.405,193,2.635,335,1.159,357,1.987,1220,4.5,1324,1.197]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[82,2.098,191,0.734,193,1.377,197,3.335,331,1.869,1111,1.745,1220,2.987,2374,3.848]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[38,0.071,115,0.472,191,1.447,193,2.715,335,1.215,1220,4.717,1324,1.255]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[804,0.471]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[74,0.76,82,2.098,91,2.413,128,0.969,185,2.897,668,2.552,2193,1.885,2315,2.166]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[111,1.714,858,3.545,1009,4.809,2430,5.616]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[32,2.011,38,0.056,66,1.355,74,0.949,77,3.232,88,3.073,125,1.937,248,3.946,262,1.641,308,3.704,335,0.96,426,3.185,668,4.316,752,1.937,1006,2.538,1324,0.992,1817,3.482]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[287,0.627,1566,4.446,1788,4.446,2380,2.704,2381,2.665,2448,4.107,2449,4.206]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[287,0.704,729,2.301,1981,4.418,2381,2.992,2448,4.61]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[38,0.071,115,0.59,335,1.215,608,3.312,1324,1.255,2449,8.469]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/email/clients/retrieve-email-using-getmail/",[74,1.017,242,5.758,729,2.568,2688,6.265]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[729,2.747,2688,6.703,2689,7.106]],["toc//docs/email/clients/retrieve-email-using-getmail/",[38,0.055,74,1.27,77,2.341,104,3.417,115,0.499,166,3.873,427,3.738,441,3.973,729,3.206,949,4.209,965,6.083,984,4.617,1623,4.351,1921,5.102,2688,8.9]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2690,7.535,2691,7.989]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1666,3.624,2690,6.703,2692,7.72]],["toc//docs/development/frameworks/catalyst-and-modperl/",[38,0.067,73,0.898,82,2.198,88,2.581,115,0.448,120,1.453,121,0.845,122,1.702,191,1.4,238,2.513,282,1.552,329,1.547,335,0.806,352,2.022,354,2.07,673,2.78,1047,4.13,1324,0.833,1397,3.356,2643,5.207,2690,8.187,2691,7.44]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[804,0.471]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[21,1.727,128,1.035,192,1.645,673,2.831,2193,2.012,2315,2.312,2693,5.001]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.221,128,0.999,637,3.344,1142,3.662,2006,4.171,2693,4.83,2694,5.563]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[38,0.058,74,0.987,89,1.367,115,0.519,137,3.983,191,0.952,203,4.006,335,0.998,545,5.587,1324,1.031,2394,7.232,2555,8.133,2693,8.133]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[21,1.851,128,1.109,375,1.35,1814,3.222,2193,2.157,2315,2.479]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[128,1.264,162,5.018,375,1.538,1814,3.672]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[38,0.08,79,2.228,115,0.533,139,2.211,191,0.992,262,1.776,265,5.084,354,2.668,590,4.572,644,2.721,1814,5.977]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[128,1.035,211,3.062,906,3.56,2193,2.012,2271,4.596,2272,4.318,2315,2.312]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1034,3.39,2277,4.439,2278,4.439,2279,4.295,2280,4.439,2306,5.121,2695,5.563]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[21,1.781,32,1.774,38,0.07,67,2.557,87,2.453,115,0.329,121,0.888,183,2.73,195,2.196,221,2.73,318,2.526,335,0.847,339,3.572,357,1.452,595,4.236,619,2.481,752,1.709,801,4.339,889,4.236,906,6.5,1324,0.875,2281,6.461]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[804,0.471]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[262,1.504,612,2.762,906,3.816,1065,3.533,2281,4.767,2684,5.684]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2039,6.16,2696,7.72,2697,7.72]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[20,2.175,51,2.227,53,4.135,58,3.629,66,1.91,67,3.074,121,1.067,122,2.15,298,4.294,587,4.239,906,4.414,1065,6.502,2041,5.216]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[804,0.471]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[128,1.296,2193,2.521,2270,4.751,2315,2.896]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[128,1.074,1074,3.596,1596,4.772,1622,3.645,2270,3.937,2652,5.506]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[38,0.076,66,1.069,102,2.495,115,0.428,120,1.366,121,0.794,139,1.612,166,3.115,191,1.051,262,1.295,308,2.157,329,1.454,335,0.758,343,3.707,355,3.385,357,1.299,498,2.826,531,3.499,752,1.529,1324,0.783,1497,3.334,1813,3.79,2152,4.893,2270,7.529]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[128,1.035,1566,4.446,1788,4.446,2193,2.012,2315,2.312,2448,4.107,2449,4.206]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[128,1.264,729,2.504,1981,4.809,2448,5.018]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[38,0.071,115,0.59,335,1.215,608,3.312,1324,1.255,2449,8.469]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2698,4.808]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[86,1.797,128,0.969,438,3.385,444,1.903,2046,3.848,2047,2.956,2193,1.885,2315,2.166]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[128,1.162,444,2.28,619,2.701,2047,3.542,2060,3.471]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[38,0.053,66,1.282,79,1.947,86,2.121,115,0.487,120,1.637,121,0.952,195,2.354,335,0.908,356,3.454,357,1.557,439,3.882,752,1.832,1324,0.938,1376,5.784,2047,5.938,2050,4.443,2051,4.542]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/cms/manage-web-content-with-joomla/",[21,2.163,192,2.061,638,5.27,673,3.546]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[637,4.641,638,5.638,1142,5.082]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[32,2.373,38,0.085,115,0.44,125,2.286,262,1.936,290,3.089,638,7.432,666,2.373,752,2.286,1006,2.995]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[804,0.471]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[74,0.76,128,0.969,142,2.869,444,1.903,2056,2.869,2057,3.687,2193,1.885,2315,2.166]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[128,1.162,444,2.28,794,4.055,2056,3.438,2060,3.471]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[38,0.054,74,0.914,115,0.563,121,0.969,261,3.517,282,1.78,335,0.925,357,1.585,426,3.068,444,2.287,474,4.977,608,2.521,1324,0.955,2056,6.085,2060,3.482]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[128,1.296,2193,2.521,2315,2.896,2426,5.571]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[128,1.264,185,3.778,742,4.908,2426,5.433]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[32,2.223,38,0.081,115,0.413,125,2.141,192,2.126,262,1.813,335,1.061,644,2.778,666,2.223,739,2.792,752,2.141,1006,2.806,1324,1.096,1809,5.436]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[89,1.694,115,0.481]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[38,0.058,89,1.374,672,3.516,1413,6.479]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[11,2.994,59,2.857,73,0.774,75,1.139,79,1.49,80,3.476,84,4.233,89,0.952,115,0.532,120,1.253,134,2.256,144,2.24,275,3.21,297,2.822,329,1.983,341,2.306,382,3.333,429,3.655,477,5.598,538,3.058,608,1.895,642,2.34,645,2.138,666,1.456,918,2.592,1118,3.89,1382,3.764,1649,4.488,1659,4.233,2000,3.4,2031,3.268,2699,4.488,2700,4.488]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[128,1.296,1018,4.837,2193,2.521,2315,2.896]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[128,1.264,185,3.778,742,4.908,1018,4.718]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[38,0.094,134,3.762,192,2.321,335,1.159,644,3.034,666,2.428,739,3.049,1018,5.449,1324,1.197]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[804,0.471]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[21,1.995,33,3.147,291,2.919,397,5.518,2701,5.778]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1604,5.16,1605,5.16,2626,5.953,2701,5.614,2702,6.466]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[21,2.232,38,0.062,66,1.498,74,1.049,109,5.192,318,3.165,330,6.314,374,4.475,392,6.172,397,6.172,2629,6.852,2701,9.448]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[125,1.657,128,1.035,716,4.107,1921,4.446,2026,4.107,2193,2.012,2315,2.312]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[128,1.264,2026,5.018,2027,6.11,2315,2.825]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[38,0.085,72,3.301,74,0.931,115,0.568,121,0.987,238,2.936,335,0.942,349,4.712,542,4.144,666,1.974,1320,5.273,1324,0.973,2026,6.424,2028,5.479,2030,5.102,2552,6.083]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[82,2.805,352,2.58,2703,6.265,2704,6.265]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[191,0.814,2288,4.959,2703,5.193,2704,5.193,2705,5.981,2706,5.981]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[38,0.043,115,0.546,120,1.943,123,3.062,137,3.215,147,2.743,160,4.895,191,1.341,203,2.953,271,2.263,329,2.068,335,0.736,673,3.717,1047,5.523,1324,0.76,1397,4.488,2021,5.069,2022,5.392,2703,4.48,2704,4.48,2707,5.16]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[804,0.471]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[74,1.017,242,5.758,729,2.568,2708,6.265]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[730,2.733,1501,3.996,2689,5.953,2708,5.614,2709,6.466]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[38,0.046,59,3.262,69,4.616,74,0.784,80,5.697,88,3.646,121,0.832,145,4.833,160,3.603,178,3.491,240,4.174,248,3.262,279,2.932,283,1.945,331,1.928,349,3.969,576,4.938,645,2.441,730,2.353,1883,4.833,2708,8.868,2710,5.567,2711,5.124,2712,5.567,2713,5.567]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[804,0.471]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[66,1.242,126,2.964,375,1.35,608,2.4,612,2.762,1065,3.533]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2039,6.16,2714,7.72,2715,7.72]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[51,2.022,53,3.756,66,1.79,67,2.792,90,4.009,121,0.969,122,1.952,126,3.114,298,3.9,375,1.944,587,3.849,608,2.521,612,3.978,666,1.937,1065,6.251,2041,4.737]],["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/",[128,1.109,287,0.673,342,4.403,608,2.4,1332,5.684,1695,4.767]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[954,6.11,1695,5.433,2716,7.037,2717,7.037]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[115,0.523,283,3.295,416,6.578,427,5.336,954,8.189]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[287,0.786,2035,4.082,2718,4.751,2719,4.751]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[287,0.606,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2720,5.563]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[32,2.011,38,0.056,73,1.07,115,0.506,120,1.73,121,1.006,125,1.937,192,1.923,193,1.719,262,1.641,329,1.842,356,3.651,491,4.359,666,2.011,752,1.937,771,4.601,1006,2.538,2035,5.162]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[287,0.786,2035,4.082,2380,3.388,2381,3.339]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[287,0.606,303,3.601,1074,3.344,1622,3.39,2035,3.147,2036,4.063,2721,5.563]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[38,0.062,73,1.182,115,0.541,120,1.913,121,1.112,192,2.126,193,1.9,329,2.036,356,4.036,491,4.818,666,2.223,771,5.086,2035,5.519]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[82,1.973,128,0.912,191,0.691,193,1.296,331,1.758,1220,2.81,2193,1.774,2315,2.038,2374,3.62]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1666,3.036,1834,4.418,1835,4.418,2377,4.722,2378,4.722]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[38,0.061,115,0.404,121,1.089,146,5.628,191,1.309,193,2.456,196,3.26,270,2.656,335,1.039,357,1.782,1220,4.035,1243,4.171,1324,1.073,1837,5.466]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[73,0.915,128,1.035,730,2.434,1024,3.375,1961,3.418,2193,2.012,2315,2.312]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1344,3.751,1961,3.549,1963,4.484,1964,4.484,2332,5.506,2565,4.617]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[38,0.062,57,2.249,86,2.478,115,0.541,121,1.112,139,2.258,142,3.958,195,2.751,335,1.061,357,1.819,730,4.123,1324,1.096,1961,4.417]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[804,0.471]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[73,0.915,287,0.627,730,2.434,1024,3.375,1961,3.418,2380,2.704,2381,2.665]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1344,3.751,1961,3.549,1963,4.484,1964,4.484,2215,4.959,2461,4.772]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[38,0.065,57,2.348,86,2.587,115,0.556,139,2.357,142,4.132,195,2.872,335,1.108,730,4.24,1324,1.144,1961,4.612]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[89,1.299,99,1.88,1140,2.56,1802,3.271,2193,2.325]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[89,1.374,1499,4.124,1989,4.908,2722,6.479]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[38,0.063,57,2.297,115,0.548,120,1.954,121,1.136,139,2.306,195,2.81,329,2.08,357,1.859,1140,3.805,1525,5.553,1802,3.737]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[89,1.206,128,1.109,1140,2.375,1802,3.035,2193,2.157,2315,2.479]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[89,1.262,1499,3.789,1989,4.51,2320,5.614,2723,6.466]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[38,0.061,57,2.203,115,0.533,120,1.873,121,1.089,139,2.211,195,2.694,329,1.994,335,1.039,357,1.782,1140,3.702,1324,1.073,1525,5.324,1802,3.583]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[89,1.206,287,0.673,1140,2.375,1802,3.035,2380,2.899,2381,2.858]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[89,1.262,1499,3.789,1987,4.992,1989,4.51,2724,6.466]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[38,0.061,57,2.203,77,2.582,115,0.597,139,2.211,195,2.694,282,2.001,335,1.039,498,3.876,1140,2.804,1324,1.073,1802,3.583,2265,4.719,2352,5.466]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[21,1.995,52,3.949,291,2.919,292,5.31,2725,5.778]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1183,5.433,2627,6.479,2725,6.11,2726,7.037]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[21,2.382,38,0.054,52,2.512,66,0.852,73,0.672,74,0.596,75,0.989,76,0.995,87,1.747,104,2.188,109,2.952,115,0.361,122,1.274,144,1.945,154,2.616,164,2.952,191,0.886,192,1.209,221,4.872,231,3.173,283,1.479,318,1.8,426,2.002,438,2.655,489,3.377,608,2.533,861,2.48,915,2.952,933,2.616,1001,2.048,1040,2.892,1268,3.896,2725,8.835,2727,4.232]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[804,0.471]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[166,4.618,167,5.618,532,6.534]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[51,1.621,165,3.086,166,3.047,282,1.427,684,3.01,2728,5.2,2729,4.787,2730,5.2]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[74,1.378,77,2.14,80,4.309,113,3.213,141,5.247,166,6.538,283,2.111,331,2.092,441,3.633,531,5.576,593,4.051,678,5.563,844,4.665,1070,4.531,1813,4.309,2711,7.796,2729,7.796]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[89,1.299,99,1.88,193,1.698,1140,2.56,2193,2.325]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[89,1.374,1499,4.124,1500,4.718,2722,6.479]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[38,0.063,57,2.297,77,2.693,115,0.609,139,2.306,193,1.941,195,2.81,282,2.087,498,4.043,1140,2.925,2265,4.922,2352,5.701]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[804,0.471]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[89,1.206,128,1.109,193,1.576,1140,2.375,2193,2.157,2315,2.479]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[89,1.374,1499,4.124,1500,4.718,2320,6.11]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[38,0.081,57,2.249,115,0.413,121,1.112,139,2.258,193,1.9,195,2.751,335,1.061,357,1.819,498,3.958,1140,2.863,1324,1.096,2265,4.818,2352,5.581]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[804,0.471]],["title//docs/tools-reference/linux-system-administration-basics/",[51,2.249,77,2.556,282,1.98,684,4.178]],["keywords//docs/tools-reference/linux-system-administration-basics/",[51,1.621,144,2.389,730,2.198,753,2.535,767,3.553,2731,5.2,2732,4.787,2733,5.2]],["toc//docs/tools-reference/linux-system-administration-basics/",[15,1.704,21,1.547,38,0.019,51,1.608,57,1.559,73,1.287,77,0.805,78,3.768,79,2.476,99,0.642,110,2.792,115,0.217,121,1.13,122,0.684,125,1.126,126,1.88,128,0.408,131,0.949,144,1.044,150,2.625,161,4.191,191,0.309,192,1.118,211,1.208,233,1.154,244,1.285,282,1.899,287,0.248,318,2.194,335,0.324,341,1.075,356,2.123,357,0.555,384,1.404,444,1.381,445,1.704,567,2.731,593,1.523,604,1.704,609,2.456,619,0.949,640,1.659,642,1.88,645,0.997,652,2.792,660,1.62,729,1.836,867,1.62,883,3.124,984,1.164,1024,1.331,1026,1.659,1038,1.704,1040,1.553,1047,1.659,1288,1.186,1376,4.038,1424,1.973,1524,1.62,1594,1.973,1852,1.813,1866,1.973,2122,1.973,2385,1.704,2421,1.973,2432,1.973,2522,2.092,2609,1.884,2610,2.092,2734,2.092,2735,2.272]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[73,0.981,191,0.84,192,1.763,197,3.816,263,3.137,1111,1.996]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[191,1.05,1846,4.997,2450,6.16]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[38,0.08,73,0.928,102,2.743,115,0.579,120,1.501,144,2.685,191,1.306,196,2.613,275,3.847,277,2.455,308,2.371,329,1.598,335,0.833,338,3.383,422,2.805,590,3.665,878,4.381,919,2.631,1324,0.86,1524,4.166,2357,4.381]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[804,0.471]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[128,1.296,2035,4.082,2193,2.521,2315,2.896]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[1074,3.596,1622,3.645,2035,3.383,2036,4.368,2736,5.981,2737,5.981]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[32,2.011,38,0.056,73,1.07,115,0.506,120,1.73,121,1.006,125,1.937,192,1.923,193,1.719,262,1.641,329,1.842,356,3.651,491,4.359,666,2.011,752,1.937,771,4.601,1006,2.538,2035,5.162]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[86,2.056,99,1.744,1243,3.533,1951,3.997,1990,3.619,2193,2.157]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1953,3.662,1954,3.662,1955,3.601,1956,3.601,1990,3.26,1994,4.171,1995,3.662]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[38,0.053,74,0.898,77,2.256,88,2.907,115,0.353,120,1.637,121,0.952,248,3.733,283,2.226,297,3.688,329,1.742,357,2.147,444,2.246,684,3.688,753,3.106,1990,5.893,1996,3.42,1999,4.776,2000,4.443,2001,4.123]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[804,0.471]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[128,1.109,619,2.579,2193,2.157,2315,2.479,2470,5.684,2738,5.361]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[722,3.106,2082,5.616,2738,6.11,2739,7.037]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[32,2.091,38,0.088,74,0.987,115,0.388,125,2.014,244,3.961,262,1.706,335,0.998,666,2.091,752,2.014,1006,2.639,1324,1.031,2738,9.787]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/apache/apache-access-control/",[191,1.072,426,3.727,608,3.063]],["keywords//docs/web-servers/apache/apache-access-control/",[144,2.556,191,0.757,262,1.355,672,2.779,1528,4.83,2740,5.563,2741,5.563]],["toc//docs/web-servers/apache/apache-access-control/",[75,1.703,76,1.714,144,4.422,191,0.992,279,3.839,426,4.551,475,4.383,608,3.74,724,3.642,919,3.282,1040,4.981,1481,5.817,2405,6.711]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[134,3.08,191,0.905,269,4.055,426,3.147,608,2.587]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[144,2.971,191,0.88,262,1.575,672,3.23,1528,5.614]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[88,3.327,113,3.876,134,3.374,269,5.864,426,5.418,441,4.383,592,4.272,608,4.453,2206,6.711]],["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/",[21,1.851,128,1.109,330,3.997,669,3.763,2193,2.157,2315,2.479]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[669,3.645,2220,6.709,2221,4.772,2222,4.772,2742,5.981]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[32,1.497,38,0.081,57,1.515,66,1.009,77,1.776,86,1.669,89,1.719,111,1.221,115,0.622,125,1.442,137,2.132,139,1.521,191,0.682,262,1.221,282,1.376,335,0.715,343,3.497,666,1.497,669,5.364,670,2.836,729,1.784,752,1.442,1006,1.89,1109,3.497,1324,0.738]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[73,0.915,104,2.978,128,1.035,192,1.645,1972,3.188,2193,2.012,2315,2.312]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[191,0.957,1472,5.616,1972,3.895,1974,5.018]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[137,4.774,196,3.554,270,2.895,335,1.133,338,4.6,341,3.758,718,5.232,1135,6.202,1324,1.17]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[21,1.851,287,0.673,330,3.997,669,3.763,2380,2.899,2381,2.858]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[669,3.94,2220,5.16,2221,5.16,2222,5.16,2743,6.466]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[32,1.456,38,0.08,57,2.191,66,0.981,86,1.623,89,1.69,111,1.188,115,0.596,121,0.728,125,1.402,137,2.073,139,1.479,191,0.663,221,2.24,262,1.188,270,1.776,335,0.695,343,3.4,357,1.192,666,1.456,669,5.277,670,2.758,729,1.735,752,1.402,1006,1.838,1109,3.4,1324,0.718]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[66,1.242,99,1.744,739,2.316,758,3.763,759,3.165,1111,1.996]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[99,1.826,1111,2.091,1112,4.848,1113,5.16,2744,5.953]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[66,1.848,75,2.145,76,2.159,739,3.446,758,5.598,759,4.708]],["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/",[66,1.242,128,1.109,287,0.673,739,2.316,758,3.763,759,3.165]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[128,1.162,287,0.704,1112,4.848,1113,5.16,2744,5.953]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[66,1.848,75,2.145,76,2.159,739,3.446,758,5.598,759,4.708]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[577,4.745,644,2.484,739,2.496,758,4.055,759,3.411]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1112,4.848,1113,5.16,2745,6.466,2746,5.614,2747,6.466]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[23,3.88,38,0.073,66,1.757,93,3.83,739,3.275,758,5.321,759,4.475,1260,6.226]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[804,0.471]],["title//docs/platform/linode-beginners-guide/",[20,2.399,1133,5.908,1502,7.254]],["keywords//docs/platform/linode-beginners-guide/",[1642,5.616,2732,6.479,2748,7.037,2749,7.037]],["toc//docs/platform/linode-beginners-guide/",[20,3.499,38,0.033,51,1.245,67,1.719,77,1.414,79,1.221,87,1.649,120,1.026,121,0.597,136,2.677,139,1.211,152,3.696,156,2.234,199,2.729,233,2.029,260,3.187,290,2.421,426,1.888,444,1.408,484,2.994,543,3.187,592,3.65,645,1.751,660,2.847,707,2.468,729,1.421,752,1.149,922,3.467,1000,2.729,1001,1.932,1024,2.34,1754,3.083,1810,5.408,1849,3.467,2101,3.467,2415,3.467,2750,3.993,2751,3.993,2752,6.229,2753,3.993,2754,3.993]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[644,2.693,739,2.706,1109,5.033,1110,4.525]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1260,5.018,1675,4.809,2746,6.11,2755,7.037]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[38,0.071,66,1.714,147,4.53,739,3.99,759,4.367,918,4.53,1115,5.943,1260,6.076]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[804,0.471]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[74,0.87,104,3.193,341,2.92,498,3.283,2756,6.175,2757,5.684]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1260,5.018,1675,4.809,2746,6.11,2757,6.479]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[38,0.081,724,4.841,739,3.635,1260,6.909]],["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/",[53,3.575,79,1.887,298,3.712,587,3.664,1000,4.219,2758,5.361]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1693,4.772,1695,4.617,2758,5.193,2759,5.981,2760,5.981,2761,5.981]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[38,0.063,67,4.258,74,1.072,181,5.87,183,3.494,335,1.084,612,3.401,919,3.423,1109,5.303,1324,1.12,2758,8.589,2762,7.604]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[804,0.471]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[79,1.887,287,0.673,365,4.63,1000,4.219,1692,4.767,2380,2.899]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1692,4.617,1693,4.772,1694,5.506,1695,4.617,1696,5.506,1697,5.506]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[38,0.068,67,3.499,74,1.146,181,6.276,183,3.736,335,1.159,612,3.636,919,3.66,1324,1.197,1692,7.972]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[128,1.195,729,2.368,1978,3.949,2193,2.325,2315,2.671]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1978,3.837,1981,4.418,1982,4.848,2763,6.466,2764,5.614]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[38,0.059,121,1.067,270,2.602,331,3.287,335,1.018,357,1.746,898,5.093,919,3.216,949,4.549,1324,1.052,1601,4.414,1780,4.414,1978,6.328,1983,5.216]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[287,0.725,729,2.368,1978,3.949,2718,4.381,2719,4.381]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1978,3.837,1981,4.418,1982,4.848,2764,5.614,2765,6.466]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[38,0.053,57,1.924,115,0.353,121,1.313,270,2.32,291,2.794,331,3.042,335,0.908,357,1.557,666,1.902,898,4.542,919,2.868,949,4.057,1324,0.938,1601,3.937,1780,3.937,1978,5.967,1983,4.652,2030,4.918]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[287,0.725,729,2.368,1978,3.949,2380,3.124,2381,3.08]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1978,3.837,1981,4.418,1982,4.848,2764,5.614,2766,6.466]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[38,0.053,57,1.924,115,0.353,121,1.313,270,2.32,291,2.794,331,3.042,335,0.908,357,1.557,666,1.902,898,4.542,919,2.868,949,4.057,1324,0.938,1601,3.937,1780,3.937,1978,5.967,1983,4.652,2030,4.918]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[38,0.048,73,0.915,287,0.627,1996,3.092,2070,3.375,2380,2.704,2381,2.665]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2767,5.981]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[86,1.918,287,0.627,1243,3.296,1951,3.728,1990,3.375,2380,2.704,2381,2.665]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1953,3.214,1954,3.214,1955,3.159,1956,3.159,1990,2.86,1994,3.66,1995,3.214,2768,4.881,2769,4.881]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[38,0.05,74,0.852,77,2.14,88,2.758,115,0.335,120,1.553,221,2.777,248,3.541,270,2.201,283,2.111,297,3.499,329,1.653,335,0.862,357,1.477,444,2.131,684,3.499,753,2.946,1324,0.89,1990,5.73,1996,3.244,1999,4.531,2000,4.215,2001,3.911,2031,4.051]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[77,2.791,115,0.437,191,1.072]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[115,0.358,144,2.971,191,0.88,672,3.23,1960,5.953]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[66,1.53,77,2.693,79,3.024,115,0.421,120,1.954,128,1.366,164,5.303,191,1.034,329,2.08,640,5.553,928,6.068,938,6.305,2432,6.602]],["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/",[191,0.982,338,4.178,878,5.41,2357,5.41]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[191,0.814,338,3.463,593,4.009,1679,3.937,2357,4.484,2770,5.506]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[75,1.856,76,1.868,292,6.341,338,5.892,593,5.327,718,5.232,878,7.631,1409,7.315,2357,5.958,2374,5.666]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[109,5.033,110,5.145,191,0.982,753,3.518]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[191,0.957,753,3.431,1679,4.633,2771,7.037]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[80,4.461,115,0.347,120,1.608,191,1.464,230,4.993,270,2.279,329,1.711,331,2.167,491,4.05,645,3.806,753,4.231,984,5.105,1382,4.83,1893,5.76,2700,5.76,2772,6.257,2773,6.257]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[73,0.915,191,0.784,192,1.645,263,2.926,287,0.627,2380,2.704,2381,2.665]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[191,0.814,672,2.988,1973,4.368,2774,5.981,2775,5.981,2776,5.981]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[38,0.082,77,2.178,115,0.547,120,1.58,134,2.845,191,1.343,196,3.833,244,3.478,263,3.124,277,2.583,282,1.687,308,2.495,329,1.681,335,0.877,422,2.952,642,2.952,1324,0.905,1452,4.288]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[287,0.627,375,1.259,729,2.049,1023,2.16,2263,3.222,2380,2.704,2381,2.665]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1023,1.631,1344,2.727,1907,3.26,2263,2.433,2535,3.357,2536,3.357,2537,3.357,2538,3.357,2668,4.003,2777,4.348,2778,4.003]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[38,0.043,57,1.559,66,1.038,74,1.066,115,0.546,121,1.13,122,2.276,139,1.565,195,1.907,283,2.642,329,1.411,335,0.736,341,3.576,375,2.154,382,2.371,644,1.926,730,2.181,739,1.935,1023,3.358,1324,0.76,1561,3.144,2209,3.526,2263,2.887]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[86,1.918,287,0.627,1243,3.296,1950,3.418,1951,3.728,2380,2.704,2381,2.665]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1950,2.897,1952,3.565,1953,3.214,1954,3.214,1955,3.159,1956,3.159,1995,3.214,2294,4.047,2779,4.881]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[38,0.086,115,0.451,121,1.215,268,3.903,335,1.159,439,4.954,666,2.428,1324,1.197,1950,6.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[73,1.057,287,0.725,722,2.937,2380,3.124,2381,3.08]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1631,4.992,2076,4.992,2673,5.362,2780,6.466,2781,6.466]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[38,0.085,73,1.269,111,1.946,115,0.643,120,2.053,121,0.832,122,1.675,134,2.576,191,0.757,192,1.59,193,1.421,282,1.528,329,2.185,375,2.232,642,2.672]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[74,0.812,111,1.403,287,0.627,375,1.259,1032,3.123,2380,2.704,2381,2.665]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1437,4.633,2061,5.433,2062,5.14,2782,7.037]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[38,0.073,74,1.231,115,0.484,335,1.245,375,2.563,1324,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[74,0.812,111,1.403,116,2.526,287,0.627,1032,3.123,2380,2.704,2381,2.665]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[116,2.623,1034,3.645,1132,4.009,2783,5.981,2784,5.981,2785,5.981]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[38,0.072,66,2.004,111,2.114,115,0.347,116,4.369,121,0.935,126,3.004,155,4.05,262,1.524,283,2.186,335,0.892,608,2.432,919,2.817,1035,3.58,1039,4.119,1324,0.921,2068,4.83,2069,4.83]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[804,0.471]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[73,0.915,192,1.645,233,2.926,287,0.627,2033,3.155,2380,2.704,2381,2.665]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1846,4.185,2033,3.542,2673,5.362,2786,6.466,2787,6.466]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[38,0.055,57,1.996,58,3.357,115,0.366,121,0.987,124,4.144,262,2.195,291,2.898,335,0.942,357,1.615,608,3.502,707,5.568,767,6.156,984,3.387,1324,0.973,2033,4.935]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[804,0.471]],["title//docs/networking/ssh/using-sshfs-on-linux/",[74,0.938,102,3.124,126,3.195,602,4.461,2788,5.138]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2788,5.433,2789,7.037,2790,7.037,2791,7.037]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[23,2.882,38,0.054,51,2.022,57,1.96,72,3.24,74,0.914,79,1.983,90,4.009,93,2.845,102,3.045,121,0.969,122,1.952,126,4.271,183,2.981,282,1.78,602,6.806,612,2.901,666,1.937,2788,5.008]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[73,1.146,99,2.038,722,3.185,2193,2.521]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[99,2.18,722,3.408,2672,6.401]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[38,0.087,73,1.314,111,2.015,115,0.611,120,1.501,121,1.236,122,1.758,134,2.704,191,0.795,192,1.669,193,1.491,329,1.598,357,1.428,375,2.282,642,2.805]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[804,0.471]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[58,3.666,79,2.205,1000,4.93,2792,6.265]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1693,5.16,1695,4.992,2792,5.614,2793,6.466,2794,6.466]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[38,0.074,74,1.262,335,1.277,1109,6.244,1324,1.318,2792,9.522]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[38,0.048,73,0.915,128,1.035,1996,3.092,2070,3.375,2193,2.012,2315,2.312]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2795,5.981]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[38,0.048,73,0.915,287,0.627,1996,3.092,2070,3.375,2679,3.861,2680,3.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2796,5.981]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[38,0.048,73,0.915,287,0.627,1996,3.092,2070,3.375,2718,3.792,2719,3.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[1996,3.211,2070,3.505,2072,4.484,2073,4.484,2074,4.484,2797,5.981]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[38,0.059,73,1.135,74,1.007,115,0.396,221,3.282,222,5.093,270,2.602,335,1.018,444,2.518,641,3.797,752,2.055,1324,1.052,1996,3.834,2001,4.623,2070,5.563,2075,5.355]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[86,1.918,287,0.627,1243,3.296,1951,3.728,1990,3.375,2679,3.861,2680,3.792]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1953,3.423,1954,3.423,1955,3.366,1956,3.366,1990,3.047,1994,3.899,1995,3.423,2798,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[38,0.053,74,0.898,77,2.256,88,2.907,115,0.353,120,1.637,248,3.733,283,2.226,297,3.688,329,1.742,335,0.908,357,1.557,444,2.246,684,3.688,753,3.106,1324,0.938,1990,5.893,1996,3.42,1999,4.776,2000,4.443,2001,4.123]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[86,1.918,287,0.627,1243,3.296,1951,3.728,1990,3.375,2718,3.792,2719,3.792]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1953,3.423,1954,3.423,1955,3.366,1956,3.366,1990,3.047,1994,3.899,1995,3.423,2799,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[38,0.05,74,0.852,77,2.14,88,2.758,115,0.335,120,1.553,221,2.777,248,3.541,270,2.201,283,2.111,297,3.499,329,1.653,335,0.862,357,1.477,444,2.131,684,3.499,753,2.946,1324,0.89,1990,5.73,1996,3.244,1999,4.531,2000,4.215,2001,3.911,2031,4.051]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[73,1.057,191,0.905,192,1.9,338,3.853,593,4.461]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[191,0.88,338,3.744,593,4.335,2676,5.614,2770,5.953]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[75,2.091,76,2.105,338,5.184,593,7.352,1382,6.912,2800,8.953]],["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/",[86,1.918,128,1.035,1243,3.296,1951,3.728,1990,3.375,2193,2.012,2315,2.312]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1953,3.662,1954,3.662,1955,3.601,1956,3.601,1990,3.26,1994,4.171,1995,3.662]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[38,0.053,74,0.898,77,2.256,88,2.907,115,0.353,120,1.637,248,3.733,283,2.226,297,3.688,329,1.742,335,0.908,357,1.557,444,2.246,684,3.688,753,3.106,1324,0.938,1990,5.893,1996,3.42,1999,4.776,2000,4.443,2001,4.123]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[128,1.109,1965,4.307,1966,4.219,1967,3.763,2193,2.157,2315,2.479]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[193,1.796,1666,3.304,1967,4.289,1968,5.14]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[32,2.428,115,0.451,125,2.339,262,1.98,290,3.16,335,1.159,527,5.796,752,2.339,1006,3.064,1324,1.197,1967,4.954]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[38,0.06,287,0.786,437,3.546,2801,6.265]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2013,4.641,2801,6.703,2802,7.72]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[115,0.59,290,3.312,375,1.862,527,6.076,1001,4.122,2801,10.069]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[38,0.065,131,3.291,636,4.802]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[193,1.42,636,3.39,637,3.344,1142,3.662,1666,2.612,1686,5.121,2006,4.171]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[38,0.069,74,1.173,115,0.461,121,1.243,131,3.475,290,3.234,636,6.99,666,2.485]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[73,1.146,722,3.185,1111,2.333,2803,7.216]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1765,5.14,1766,5.276,2804,7.037,2805,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[38,0.085,73,1.269,111,1.946,115,0.643,120,2.053,121,0.832,122,1.675,191,1.087,192,1.59,193,1.421,282,1.528,329,2.185,375,2.232,491,3.603]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[73,1.146,197,4.459,722,3.185,1111,2.333]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1765,5.14,1766,5.276,2806,7.037,2807,7.037]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[38,0.085,73,1.269,111,1.946,115,0.643,120,2.053,121,0.832,122,1.675,191,1.087,192,1.59,193,1.421,282,1.528,329,2.185,375,2.232,491,3.603]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[804,0.471]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[128,1.195,191,0.905,1144,3.723,2193,2.325,2315,2.671]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[667,3.639,2311,5.835,2312,6.479,2313,6.479]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[11,2.89,38,0.078,74,0.987,121,1.046,139,2.123,150,4.693,191,0.952,254,4.155,270,2.55,335,0.998,357,1.711,667,3.62,1144,5.907,1324,1.031,2314,5.249]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[38,0.048,191,0.784,287,0.627,1144,3.222,1156,2.831,2679,3.861,2680,3.792]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[667,3.639,1949,5.616,2311,5.835,2808,7.037]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[11,3.01,38,0.08,74,1.027,139,2.211,150,4.887,191,0.992,254,4.326,270,2.656,335,1.039,667,3.77,1144,6.027,1324,1.073,2314,5.466]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[287,0.627,375,1.259,729,2.049,1023,2.16,2263,3.222,2679,3.861,2680,3.792]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1023,1.831,1344,3.061,1907,3.66,2263,2.731,2535,3.768,2536,3.768,2537,3.768,2538,3.768,2809,4.881]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[38,0.043,57,1.559,66,1.038,74,1.066,115,0.546,121,1.13,122,2.276,139,1.565,195,1.907,283,2.642,329,1.411,335,0.736,341,3.576,375,2.154,382,2.371,644,1.926,730,2.181,739,1.935,1023,3.358,1324,0.76,1561,3.144,2209,3.526,2263,2.887]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[58,3.381,67,2.864,74,0.938,612,2.976,2041,4.86]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2041,5.638,2810,7.72,2811,7.72]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[38,0.061,67,3.138,82,2.834,120,1.873,126,4.62,297,4.221,331,2.524,612,4.303,915,5.084,1065,4.171,1066,4.383,1436,5.817,2041,7.027]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[86,1.918,287,0.627,1243,3.296,1950,3.418,1951,3.728,2718,3.792,2719,3.792]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1950,2.897,1952,3.565,1953,3.214,1954,3.214,1955,3.159,1956,3.159,1995,3.214,2294,4.047,2812,4.881]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[38,0.086,115,0.451,121,1.215,268,3.903,335,1.159,439,4.954,666,2.428,1324,1.197,1950,6.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[86,1.918,128,1.035,1243,3.296,1950,3.418,1951,3.728,2193,2.012,2315,2.312]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1950,3.086,1952,3.797,1953,3.423,1954,3.423,1955,3.366,1956,3.366,1995,3.423,2482,4.787]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[38,0.086,115,0.451,121,1.215,268,3.903,335,1.159,439,4.954,666,2.428,1324,1.197,1950,6.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[804,0.471]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[287,0.627,729,2.049,991,2.42,1342,3.792,2324,4.596,2679,3.861,2680,3.792]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1560,5.018,2328,5.616,2329,5.616,2580,6.479]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[32,2.223,38,0.081,57,2.249,79,2.275,125,2.141,262,1.813,282,2.043,335,1.061,666,2.914,752,2.141,1006,2.806,1324,1.096,1342,4.901]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[287,0.627,375,1.259,729,2.049,1023,2.16,2263,3.222,2718,3.792,2719,3.792]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1023,1.831,1344,3.061,1907,3.66,2263,2.731,2535,3.768,2536,3.768,2537,3.768,2538,3.768,2778,4.493]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[38,0.043,57,1.559,66,1.038,74,1.066,115,0.546,121,1.13,122,2.276,139,1.565,195,1.907,283,2.642,329,1.411,335,0.736,341,3.576,375,2.154,382,2.371,644,1.926,730,2.181,739,1.935,1023,3.358,1324,0.76,1561,3.144,2209,3.526,2263,2.887]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[74,1.017,156,4.037,1924,6.642,2788,5.571]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2788,5.433,2813,7.037,2814,7.037,2815,7.037]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[73,1.182,115,0.603,156,6.089,165,4.417,182,5.436,299,5.307,602,4.99,608,2.893,612,3.329,2788,5.747,2816,7.444]],["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/",[73,0.915,192,1.645,233,2.926,287,0.627,2033,3.155,2718,3.792,2719,3.792]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1846,4.555,2033,3.855,2817,7.037,2818,6.11]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[38,0.057,57,2.074,58,3.488,115,0.381,124,4.306,262,2.252,291,3.011,335,0.979,608,3.593,707,5.714,767,6.317,984,3.518,1324,1.011,2033,5.064]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[99,1.744,729,2.197,991,2.594,1342,4.065,2193,2.157,2324,4.927]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1560,5.018,2328,5.616,2329,5.616,2819,7.037]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[32,2.321,38,0.083,57,2.348,79,2.375,125,2.236,262,1.893,282,2.133,666,2.996,752,2.236,1006,2.929,1342,5.116]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[804,0.471]],["title//docs/databases/postgresql/centos-5/",[74,0.87,99,1.744,111,1.504,116,2.708,1032,3.348,2193,2.157]],["keywords//docs/databases/postgresql/centos-5/",[116,3.087,1034,4.289,1132,4.718,2820,7.037]],["toc//docs/databases/postgresql/centos-5/",[38,0.055,66,2.062,111,2.195,115,0.366,116,4.496,121,0.987,126,3.172,155,4.277,262,1.61,283,2.309,335,0.942,608,2.569,919,2.975,1035,3.781,1039,4.351,1324,0.973]],["deprecated//docs/databases/postgresql/centos-5/",[804,0.471]],["title//docs/databases/postgresql/fedora-12/",[74,0.87,111,1.504,116,2.708,197,3.816,1032,3.348,1111,1.996]],["keywords//docs/databases/postgresql/fedora-12/",[1034,4.704,1132,5.175,2821,7.72]],["toc//docs/databases/postgresql/fedora-12/",[38,0.055,66,2.062,111,2.195,115,0.366,116,4.496,121,0.987,126,3.172,155,4.277,262,1.61,283,2.309,335,0.942,608,2.569,919,2.975,1035,3.781,1039,4.351,1324,0.973]],["deprecated//docs/databases/postgresql/fedora-12/",[804,0.471]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[74,0.812,111,1.403,116,2.526,287,0.627,1032,3.123,2679,3.861,2680,3.792]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[116,3.087,1034,4.289,1132,4.718,2822,6.479]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[38,0.061,66,2.167,111,1.776,115,0.404,116,4.724,283,2.547,335,1.372,1035,4.171,1039,4.8,1324,1.417]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[804,0.471]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[74,0.812,111,1.403,116,2.526,287,0.627,1032,3.123,2718,3.792,2719,3.792]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[116,3.087,1034,4.289,1132,4.718,2822,6.479]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[38,0.063,66,2.212,111,1.852,115,0.421,116,4.822,283,2.657,335,1.084,1035,4.351,1039,5.006,1324,1.12]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[128,1.035,375,1.259,729,2.049,1023,2.16,2193,2.012,2263,3.222,2315,2.312]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1023,1.831,1344,3.061,1907,3.66,2263,2.731,2535,3.768,2536,3.768,2537,3.768,2538,3.768,2823,4.881]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[38,0.042,57,1.515,66,1.009,74,1.043,115,0.539,121,1.315,122,2.228,139,1.521,195,1.853,283,2.587,329,1.371,335,0.715,341,3.501,357,1.225,375,2.125,382,2.304,644,1.871,730,2.119,739,1.88,1023,3.302,1324,0.738,1561,3.055,2209,3.426,2263,2.805]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[128,1.109,191,0.84,1275,2.838,2193,2.157,2315,2.479,2553,4.927]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.809,191,0.957,1275,3.234,2554,5.616]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[38,0.058,39,2.795,74,0.987,82,2.721,104,3.62,115,0.388,120,2.407,121,1.046,191,0.952,238,3.111,335,0.998,357,1.711,673,3.441,1275,4.305,1324,1.031,1397,4.155]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[191,0.84,287,0.673,1275,2.838,2553,4.927,2679,4.139,2680,4.065]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[39,2.221,191,0.757,287,0.606,1275,2.556,2554,4.439,2680,3.662,2824,5.563]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[38,0.077,39,2.741,74,0.967,82,2.668,104,3.55,115,0.381,120,2.376,191,0.934,238,3.05,290,2.668,335,0.979,673,3.374,1275,4.804,1324,1.011,1397,4.074]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[73,0.915,128,1.035,192,1.645,233,2.926,2033,3.155,2193,2.012,2315,2.312]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1846,4.555,2033,3.855,2565,5.433,2677,6.479]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[38,0.061,58,3.704,115,0.404,124,4.572,262,2.344,335,1.039,608,3.74,707,5.947,767,6.575,1324,1.073,2033,5.271]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[804,0.471]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[5,3.035,33,2.92,34,4.63,331,2.138,881,3.619,1545,4.403]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[815,5.276,816,5.018,1546,5.616,1547,5.616]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[99,2.364,128,1.74,131,2.481,219,3.159,287,1.055,516,3.072,991,3.516,1111,1.921,1156,2.92,1218,4.339,1535,3.572,1682,2.557,1777,3.045,2104,2.64,2176,2.852,2193,2.076,2239,2.557,2825,5.941,2826,5.941,2827,5.941,2828,5.941]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[804,0.471]],["title//docs/tools-reference/tools/introduction-to-rsync/",[59,5.086,1918,6.925]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[156,3.112,860,3.601,1489,4.83,1918,4.439,2633,5.121,2829,5.563,2830,5.563]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[382,3.916,915,5.943,1918,9.254,2831,8.521,2832,8.521,2833,8.521,2834,8.521]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[74,0.812,111,1.403,116,2.526,128,1.035,1032,3.123,2193,2.012,2315,2.312]],["keywords//docs/databases/postgresql/debian-5-lenny/",[116,3.087,1034,4.289,1132,4.718,2835,7.037]],["toc//docs/databases/postgresql/debian-5-lenny/",[38,0.076,66,2.083,111,1.641,115,0.373,116,4.54,121,1.006,155,4.359,283,2.353,335,0.96,919,3.032,1035,3.853,1039,4.434,1324,0.992,2068,5.199,2069,5.199]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[804,0.471]],["title//docs/development/version-control/how-to-configure-git/",[11,3.253,50,4.038,432,5.188]],["keywords//docs/development/version-control/how-to-configure-git/",[50,2.357,128,0.826,287,0.501,1288,2.4,1483,2.842,1603,3.993,1604,3.67,1605,3.67,1606,3.814,2836,4.599]],["toc//docs/development/version-control/how-to-configure-git/",[50,5.577,77,2.637,115,0.413,126,3.574,142,3.958,221,4.483,318,3.165,382,4.483,397,6.172,573,5.436,1510,6.463]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[38,0.055,50,3.411,51,2.074,53,3.853,58,3.381]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[50,3.314,1603,5.614,1604,5.16,1605,5.16,1606,5.362]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[11,3.792,38,0.076,50,6.145,59,5.383]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[51,2.456,59,4.618,562,6.083]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[51,2.406,1791,5.96,2837,7.72]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[11,2.442,15,2.804,20,1.801,32,1.117,33,1.769,38,0.069,51,2.833,67,1.609,73,0.594,79,1.808,95,3.101,102,4.267,220,2.887,262,0.911,283,1.307,331,1.295,332,2.42,382,1.718,393,2.382,432,2.462,475,2.248,543,2.984,609,2.345,649,2.887,650,2.345,660,2.666,752,2.615,933,3.656,938,3.101,1324,0.551,1435,3.247,1448,3.247,1659,3.247,1759,4.905,1791,2.887,1940,3.247,2114,3.442,2838,5.916,2839,3.739,2840,3.739,2841,3.739]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[51,2.456,283,2.753,1040,5.384]],["keywords//docs/tools-reference/linux-users-and-groups/",[51,1.864,283,2.09,933,3.696,2523,4.959,2842,5.981,2843,5.981]],["toc//docs/tools-reference/linux-users-and-groups/",[66,1.402,79,2.854,88,2.108,102,3.936,108,3.097,231,3.464,249,3.097,275,3.042,283,3.262,318,1.964,340,2.778,382,3.201,393,4.436,427,2.614,537,3.831,650,2.898,819,4.011,933,6.191,946,4.253,983,3.687,1040,6.379,1244,3.374,2523,5.776,2844,4.62,2845,4.62]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[282,2.163,2107,6.842,2108,7.254]],["keywords//docs/security/recovering-from-a-system-compromise/",[2846,7.037,2847,8.653,2848,6.479]],["toc//docs/security/recovering-from-a-system-compromise/",[20,2.743,74,0.931,91,4.584,115,0.366,152,3.921,184,4.826,592,3.873,860,5.831,1446,4.712,1794,5.479,2106,7.47,2464,6.083,2699,6.083,2849,6.608,2850,6.608,2851,6.608]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[128,1.035,191,0.784,263,2.926,644,2.15,739,2.16,2193,2.012,2315,2.312]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1675,4.809,1680,6.479,1846,4.555,2565,5.433]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[38,0.044,66,1.054,74,1.272,115,0.424,147,2.784,191,1.228,335,0.747,644,3.369,724,2.616,739,4.269,758,5.501,759,5.41,918,2.784,1110,3.284,1115,3.652,1324,0.771]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[89,1.299,99,1.88,412,3.472,1168,3.538,2193,2.325]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1169,4.231,1484,4.908,1485,4.349,2852,7.037]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[38,0.087,57,2.074,89,1.805,121,1.381,122,2.066,195,2.537,277,2.884,308,2.786,335,0.979,357,1.678,375,1.5,422,3.296,670,3.884,1324,1.011,1817,3.55]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[89,1.206,128,1.109,412,3.222,1168,3.283,2193,2.157,2315,2.479]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1169,4.231,1484,4.908,1485,4.349,1885,6.11]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[38,0.087,57,2.074,89,1.805,121,1.381,122,2.066,195,2.537,277,2.884,308,2.786,335,0.979,357,1.678,375,1.5,422,3.296,670,3.884,1324,1.011,1817,3.55]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[89,1.124,287,0.627,412,3.005,1156,2.831,1168,3.062,2679,3.861,2680,3.792]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1169,4.231,1484,4.908,1485,4.349,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[38,0.089,57,2.158,89,1.853,121,1.067,122,2.15,195,2.64,277,3.001,308,2.899,335,1.018,375,1.561,422,3.429,670,4.041,1324,1.052,1817,3.693]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[89,1.206,287,0.673,412,3.222,1168,3.283,2718,4.065,2719,4.065]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1169,4.641,1484,5.384,1485,4.771]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[38,0.089,57,2.158,89,1.853,121,1.067,122,2.15,195,2.64,277,3.001,308,2.899,335,1.018,375,1.561,422,3.429,670,4.041,1324,1.052,1817,3.693]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[20,2.026,31,3.684,33,3.147,38,0.055,1494,5.778]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[874,6.401,875,6.703,997,7.106]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[11,2.678,20,2.708,66,1.305,115,0.36,121,0.969,122,1.952,175,3.296,329,2.776,479,4.199,542,6.367,606,3.849,612,2.901,860,4.199,1249,8.189,1496,4.864,2853,6.487]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[804,0.471]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[191,0.84,287,0.673,412,3.222,1168,3.283,2718,4.065,2719,4.065]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1169,4.231,1485,4.349,1886,5.276,2282,5.433]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[38,0.065,88,3.547,104,4.018,115,0.431,119,4.499,191,1.057,238,3.453,352,2.778,382,3.571,670,5.676,884,5.42,1168,4.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[73,0.857,191,0.734,192,1.541,263,2.742,287,0.588,1156,2.652,2679,3.617,2680,3.553]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[191,0.814,672,2.988,1973,4.368,2854,5.981,2855,5.981,2856,5.981]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[38,0.082,77,2.178,115,0.547,120,1.58,134,2.845,191,1.343,196,3.833,244,3.478,263,3.124,277,2.583,282,1.687,308,2.495,329,1.681,335,0.877,422,2.952,642,2.952,1324,0.905,1452,4.288]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[74,0.87,99,1.744,111,1.504,375,1.35,1032,3.348,2193,2.157]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1437,5.082,2062,5.638,2857,7.72]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[38,0.063,74,1.072,115,0.548,282,2.087,335,1.084,375,2.545,917,4.7,918,4.043,919,3.423,1324,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[74,0.87,111,1.504,197,3.816,375,1.35,1032,3.348,1111,1.996]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1819,5.96,1820,6.401,2858,7.72]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[38,0.063,74,1.072,115,0.548,282,2.087,335,1.084,375,2.545,917,4.7,918,4.043,919,3.423,1324,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[74,0.812,111,1.403,287,0.627,375,1.259,1032,3.123,2679,3.861,2680,3.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1437,4.633,2061,5.433,2062,5.14,2859,7.037]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[38,0.073,74,1.231,115,0.484,335,1.245,375,2.563,1324,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[74,0.812,111,1.403,287,0.627,375,1.259,1032,3.123,2718,3.792,2719,3.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1437,4.633,2061,5.433,2062,5.14,2860,7.037]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[38,0.073,74,1.231,115,0.484,335,1.245,375,2.563,1324,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[74,0.812,111,1.403,128,1.035,375,1.259,1032,3.123,2193,2.012,2315,2.312]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1437,4.633,2062,5.14,2347,6.479,2861,7.037]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[38,0.073,74,1.231,115,0.484,335,1.245,375,2.563,1324,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[804,0.471]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[115,0.319,128,1.035,268,2.765,580,3.792,2193,2.012,2315,2.312,2862,5.759]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[619,2.939,2863,7.037,2864,7.037,2865,7.037]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[38,0.076,115,0.509,268,5.348,335,1.31,1324,1.353]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[804,0.471]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[38,0.051,191,0.84,287,0.673,1144,3.455,2718,4.065,2719,4.065]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[667,3.092,1144,3.346,2311,4.959,2818,5.193,2866,5.981,2867,5.981]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[38,0.085,74,1.12,139,2.41,150,5.327,191,1.081,335,1.133,667,4.109,1144,5.694,1324,1.17,2314,5.958]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[73,0.981,128,1.109,192,1.763,1135,3.763,2193,2.157,2315,2.479]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[672,3.23,2868,6.466,2869,6.466,2870,6.466,2871,6.466]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[38,0.047,85,4.033,88,2.581,115,0.448,120,2.423,121,0.845,128,1.016,308,2.295,329,2.579,331,1.958,335,0.806,357,1.382,429,4.24,616,4.522,1118,4.513,1135,4.925,1138,7.017,1139,4.911,1324,0.833,1481,4.513,1751,4.69,1888,5.207]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[804,0.471]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[110,5.145,356,3.912,619,3.014,753,3.518]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2847,9.196,2848,7.106]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[110,6.112,121,1.281,184,4.49,191,0.836,263,3.124,356,6.088,375,1.344,619,2.568,753,2.998,802,4.49,939,4.61,967,5.66,1652,5.338,1780,3.8,2050,5.978,2154,5.098,2872,6.148,2873,6.148]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[20,2.197,74,1.017,332,4.67,880,5.145]],["keywords//docs/networking/using-the-linode-shell-lish/",[332,4.555,880,5.018,891,4.908,1096,5.14]],["toc//docs/networking/using-the-linode-shell-lish/",[67,2.434,74,1.139,82,2.198,87,2.335,183,2.599,192,1.615,263,2.873,275,3.724,312,3.791,318,2.405,376,4.513,441,3.4,692,4.24,709,4.911,880,7.335,1063,3.661,2874,5.656,2875,5.656,2876,5.656,2877,5.656,2878,5.656,2879,5.656,2880,5.656,2881,5.656,2882,8.081]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[74,1.223,312,5.817]],["keywords//docs/networking/ssh/using-the-terminal/",[2883,7.72,2884,7.72,2885,7.72]],["toc//docs/networking/ssh/using-the-terminal/",[19,3.054,21,1.284,66,1.323,79,2.745,95,5.453,102,4.216,125,1.232,151,3.552,167,3.054,183,1.969,203,2.451,282,1.805,312,2.872,318,3.403,340,3.954,390,3.307,475,2.575,541,3.552,567,6.263,568,3.418,593,2.872,650,2.687,652,3.054,705,2.82,860,2.773,892,3.944,920,3.212,1072,3.719,1726,2.927,1791,3.307,1856,3.552,2385,3.212,2886,4.284,2887,4.284,2888,4.284]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[59,4.618,443,4.802,444,2.778]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1685,5.835,2889,7.037,2890,7.037,2891,7.037]],["toc//docs/networking/dns/dns-records-an-introduction/",[73,0.944,79,1.816,341,2.81,382,2.73,442,4.926,443,5.1,444,3.708,642,4.018,740,5.469,1210,4.587,1233,4.587,1234,4.741,1376,3.912,1702,4.926,2057,4.06,2734,5.469,2892,5.941,2893,5.469,2894,5.941,2895,5.941,2896,5.941,2897,5.941]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[73,0.981,99,1.744,191,0.84,192,1.763,263,3.137,2193,2.157]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[191,1.05,1846,4.997,2672,6.401]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[38,0.077,73,0.871,102,2.573,115,0.562,120,1.408,121,0.819,134,2.536,144,2.518,191,1.26,196,2.451,275,3.608,277,2.302,308,2.224,329,1.499,335,0.781,338,3.173,357,1.339,422,2.631,590,3.437,642,2.631,878,4.109,919,2.467,1324,0.807,1524,3.907,2357,4.109]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[804,0.471]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[73,0.915,128,1.035,191,0.784,192,1.645,263,2.926,2193,2.012,2315,2.312]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[672,2.988,1472,4.772,1889,5.193,2898,5.981,2899,5.981,2900,5.981]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[38,0.084,115,0.487,120,1.637,121,0.952,134,2.948,191,1.195,196,3.929,244,3.603,263,3.236,277,2.676,308,2.585,329,1.742,335,0.908,357,1.557,422,3.058,642,3.058,1324,0.938,1452,4.443]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[804,0.471]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[21,1.995,192,1.9,673,3.271,1210,5.138,2901,6.126]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2902,8.548,2903,8.548]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[32,1.937,38,0.074,66,1.305,111,1.58,125,1.866,196,2.901,262,1.58,290,2.521,382,2.981,422,3.114,577,4.625,752,1.866,1006,2.445,1210,7.838,2901,9.346,2904,6.487,2905,6.487]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[804,0.471]],["title//docs/networking/dns/dns-manager-overview/",[21,2.362,444,2.778,852,5.755]],["keywords//docs/networking/dns/dns-manager-overview/",[1463,5.121,1464,4.83,1637,5.121,1638,5.121,1685,4.613,1805,4.83,2906,5.563]],["toc//docs/networking/dns/dns-manager-overview/",[11,1.667,15,3.028,21,1.211,23,1.794,73,0.642,74,0.569,87,2.594,93,1.771,121,1.152,122,1.216,161,2.76,211,2.147,335,0.576,340,2.428,341,5.097,432,2.659,443,3.829,444,2.72,445,3.028,572,2.659,609,2.533,642,3.017,650,2.533,753,1.969,984,2.07,1053,2.95,1376,6.862,1534,3.507,1804,3.507,1805,3.507,1892,3.507,1922,3.507,2893,3.718,2907,4.039,2908,4.039]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[73,1.057,128,1.195,722,2.937,2193,2.325,2315,2.671]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1476,6.401,1870,6.703,2909,7.72]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[38,0.087,73,1.314,111,2.015,115,0.611,120,1.501,121,1.236,122,1.758,134,2.704,191,0.795,192,1.669,193,1.491,329,1.598,357,1.428,375,2.282,642,2.805]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[73,0.981,287,0.673,722,2.726,1156,3.035,2679,4.139,2680,4.065]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1628,7.106,2910,7.72,2911,7.72]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[38,0.086,73,1.299,111,1.992,115,0.649,120,2.101,121,0.859,122,1.73,191,0.782,192,1.641,193,1.467,282,1.578,329,2.236,375,2.265]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[804,0.471]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[73,1.057,287,0.725,722,2.937,2718,4.381,2719,4.381]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1631,5.96,2076,5.96,2818,6.703]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[38,0.085,73,1.269,111,1.946,115,0.643,120,2.053,121,0.832,122,1.675,134,2.576,191,0.757,192,1.59,193,1.421,282,1.528,329,2.185,375,2.232,642,2.672]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[804,0.471]],["title//docs/tools-reference/linux-package-management/",[21,2.362,51,2.456,57,2.381]],["keywords//docs/tools-reference/linux-package-management/",[220,4.014,649,4.014,1800,4.787,2912,5.2,2913,4.787,2914,4.787,2915,5.2,2916,4.787]],["toc//docs/tools-reference/linux-package-management/",[21,2.927,32,1.02,51,1.715,57,3.325,74,0.775,81,1.75,99,0.964,115,0.189,126,1.639,128,0.613,142,1.815,220,4.247,277,1.434,282,0.937,287,0.372,318,1.452,335,0.487,382,2.528,416,2.381,441,2.053,562,2.636,649,2.636,884,2.381,1111,1.104,1288,2.87,1324,0.503,1483,2.11,1640,2.724,1641,2.724,1670,2.964,2913,5.064,2914,3.143,2916,6.36,2917,3.414,2918,3.414,2919,3.414,2920,3.414,2921,3.414,2922,3.414,2923,3.414,2924,3.414,2925,3.414,2926,3.414,2927,5.501,2928,3.414,2929,3.414]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":516,"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":2401,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":1991,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2639,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":974,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2104,"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":2250,"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":2271,"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":2803,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2156,"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":2105,"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":197,"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":1682,"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":2353,"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":2825,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2238,"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":737,"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":1537,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2198,"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":437,"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/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":799,"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":2828,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":886,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1843,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":263,"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":750,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1781,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1277,"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":1763,"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":1708,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2130,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1417,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":749,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":534,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":40,"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":1714,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1715,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2585,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1164,"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":1716,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1718,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2125,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2193,"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":991,"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":1772,"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":1709,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1713,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1758,"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":1761,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1815,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":131,"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":215,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1155,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":194,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1753,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1710,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1711,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1712,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":219,"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":2679,"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":1391,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2124,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":256,"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/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2718,"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":2380,"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":2892,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2927,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1850,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2436,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1977,"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":608,"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/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":1528,"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":2842,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2439,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":427,"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":872,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1527,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1195,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":482,"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":802,"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":641,"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":87,"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-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":2149,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2089,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":88,"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":1636,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":152,"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":439,"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":767,"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":1699,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2684,"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":1264,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":684,"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":2068,"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":1242,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":441,"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":875,"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":998,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":35,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1608,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":130,"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":2016,"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":720,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":405,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1926,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1322,"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":960,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":677,"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":1561,"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":1396,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":509,"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":512,"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":1092,"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":1093,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1095,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1041,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":576,"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":1351,"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":2264,"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":2240,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1331,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1244,"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":757,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1074,"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":1251,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":651,"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":1257,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1785,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1810,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":697,"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":1429,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1426,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1430,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1428,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1427,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1431,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1433,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2560,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":450,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":26,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":191,"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":1847,"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":1782,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1477,"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":887,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2898,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2296,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":646,"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":1471,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2899,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2297,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2539,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2355,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":368,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2856,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1151,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1473,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2776,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2900,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2603,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2371,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2687,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1472,"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":2302,"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":1973,"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":2298,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1675,"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":2311,"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":2507,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2510,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2358,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2513,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2362,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1946,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1145,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2515,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2601,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2369,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2854,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2774,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2855,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2775,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2602,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2370,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1889,"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":855,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":755,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1586,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":64,"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":1822,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":119,"title":{"/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/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":845,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1263,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":571,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":586,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1335,"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":2246,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":82,"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":206,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1031,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":649,"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":2915,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1800,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2917,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1377,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1288,"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":1872,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1873,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1875,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1877,"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":1876,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":440,"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":2494,"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":105,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1012,"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":1015,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2862,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2863,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2114,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":790,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":763,"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":2477,"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":2473,"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":1920,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":842,"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":381,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1353,"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":1354,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2631,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1358,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2630,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":302,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":347,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2875,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":314,"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":71,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1620,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1446,"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":2405,"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":279,"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":1241,"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":2046,"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":1862,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":96,"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":1523,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":165,"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":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/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":778,"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":476,"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":29,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1704,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2893,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":154,"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":2829,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1648,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":149,"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":2406,"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":1402,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2531,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":156,"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":2139,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":452,"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":1329,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":972,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":134,"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":831,"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":1177,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":77,"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":2701,"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":2576,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":234,"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":236,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":75,"title":{},"keywords":{},"toc":{"/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":76,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/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":1508,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1502,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":754,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1599,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":364,"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":1118,"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":1421,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2800,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1071,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":547,"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":1003,"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":508,"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":151,"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":1759,"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":1186,"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":1188,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blank",{"_index":2115,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":309,"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":869,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":413,"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/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2762,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1509,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2083,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":606,"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":2147,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":473,"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":910,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2123,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":731,"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":1306,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1300,"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":397,"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":294,"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":2415,"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":2235,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":557,"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":376,"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":1174,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2255,"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":2592,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2259,"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":81,"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":796,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1416,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2574,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1116,"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":1414,"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":2616,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2849,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2500,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2702,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1115,"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":442,"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":794,"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":2026,"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":671,"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":674,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2545,"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":2546,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":734,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2324,"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":2242,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1794,"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":2245,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1272,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1090,"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":735,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2682,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2021,"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":854,"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":2690,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1336,"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":1481,"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":421,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":45,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":345,"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":99,"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":2672,"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":993,"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":856,"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":1375,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1372,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1373,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1374,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1273,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2212,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":624,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":739,"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":1684,"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":1220,"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":1117,"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":393,"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/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":1729,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1730,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1459,"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":1955,"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":1553,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1556,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":984,"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":1892,"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":1503,"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":1506,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1517,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1505,"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":1518,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1519,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1504,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2033,"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":2040,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2445,"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":2446,"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":2544,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2817,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2444,"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":2532,"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":2786,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2787,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2533,"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":2543,"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":2034,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2523,"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":150,"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":2843,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":371,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":964,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":379,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1978,"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":2177,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2178,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2567,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1979,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":1985,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":448,"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":2712,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1293,"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":1776,"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":247,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":396,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":434,"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":72,"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":2029,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1223,"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":1053,"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":1405,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":188,"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":1438,"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":1301,"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":811,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":783,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":787,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1703,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":271,"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":637,"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":2734,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":292,"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":2448,"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":1954,"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":1011,"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":1036,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1062,"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":2492,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":318,"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":921,"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":1824,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":832,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":97,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":932,"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":1110,"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":2755,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":392,"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":109,"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":2388,"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":2393,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":859,"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":603,"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":812,"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":813,"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":19,"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":483,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":222,"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":48,"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":1068,"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":2108,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":494,"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":562,"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":2434,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":124,"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":2420,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1409,"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":1775,"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":488,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":536,"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":2113,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1192,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":115,"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/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":713,"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":1292,"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":688,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1957,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":274,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1738,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":358,"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":2773,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2452,"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":2453,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2458,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2456,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2455,"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":2460,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2459,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2454,"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":1245,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":67,"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":2480,"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":2479,"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":2832,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1497,"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":891,"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":1107,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1379,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2873,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1939,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":46,"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-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":112,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":912,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":673,"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":634,"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":1673,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1686,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1142,"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":2651,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":825,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":43,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1678,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":426,"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":2186,"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":1076,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2467,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1507,"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":1808,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":860,"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":914,"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":893,"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":2126,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2127,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1313,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":464,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2052,"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":1853,"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":1199,"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":1203,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1204,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2263,"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":2754,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2833,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2653,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1099,"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":1102,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1690,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2655,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2654,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1852,"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":{}}],["crash",{"_index":2750,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":323,"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":66,"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":2091,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":864,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":633,"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":1258,"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":1793,"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":976,"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":166,"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":2730,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2728,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2729,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":170,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1899,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1202,"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":1205,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1206,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1207,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1114,"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":980,"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":1549,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":15,"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":31,"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":997,"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":874,"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":2241,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":994,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":816,"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":1479,"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":815,"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":2180,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2758,"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":1727,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":349,"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":1365,"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":2816,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2876,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":228,"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":91,"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":793,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":111,"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":272,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":273,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2752,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1392,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2005,"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":844,"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":2466,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1304,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1305,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1570,"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":2638,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2626,"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":803,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1213,"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":770,"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":1769,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":128,"title":{"/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/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":2677,"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":2308,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2331,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2301,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2179,"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":2330,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1616,"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":1869,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":850,"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":1474,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1486,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2332,"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":2864,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":851,"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":1475,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1870,"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":2909,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2565,"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":2763,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2307,"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":1912,"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":2286,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1615,"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":2737,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":98,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1938,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1970,"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":1664,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":388,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":771,"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":553,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":546,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":418,"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":1516,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":84,"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":2772,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2441,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2023,"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":108,"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":746,"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":425,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2244,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":962,"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":238,"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":352,"title":{"/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-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":689,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1959,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1081,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1408,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":365,"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/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":1929,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2613,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":480,"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":315,"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":2154,"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":200,"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":2548,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":201,"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":1652,"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":883,"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":1754,"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":958,"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":2418,"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":1449,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1382,"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":2188,"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":2643,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":102,"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":355,"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":2145,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2662,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2117,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2230,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1965,"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":2575,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":175,"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":408,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":33,"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":2628,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1783,"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":2196,"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":1275,"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":1234,"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":929,"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":169,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":171,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1236,"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":444,"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":2095,"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":2923,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1464,"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":2335,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1463,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2889,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2890,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2891,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":44,"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-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-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":47,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":49,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":363,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":627,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":726,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":805,"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":2053,"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":1858,"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":2920,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2647,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2645,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2081,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":341,"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":1685,"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":2906,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1541,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1542,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1539,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1544,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2168,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2169,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2163,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2171,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2164,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2166,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2165,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2167,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2170,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1557,"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":1911,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2211,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1564,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1559,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2208,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2570,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1896,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2751,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":290,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/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":1580,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2914,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1097,"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":2007,"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":513,"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":1404,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1757,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":636,"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":1143,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1672,"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":2100,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":843,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":535,"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":1935,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1603,"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":2022,"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":2378,"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":2692,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1019,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":525,"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":12,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":937,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":934,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1262,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2886,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":742,"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":211,"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":568,"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":2642,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2449,"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":1990,"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":1994,"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":1992,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":1993,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2769,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2798,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2799,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2768,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":213,"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":648,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":223,"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":706,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2738,"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":2739,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":521,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":519,"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":520,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2888,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":729,"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":2764,"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":1982,"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":1127,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2928,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":270,"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":2142,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":168,"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":1196,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2398,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2394,"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":2646,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{},"deprecated":{}}],["enhanc",{"_index":1139,"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":943,"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":681,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2015,"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":391,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":678,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["enviro",{"_index":204,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["environ",{"_index":203,"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/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":394,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1667,"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":1400,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2465,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2109,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":1998,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1312,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":245,"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":2709,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2686,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2918,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2924,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1866,"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":2921,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1882,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2162,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":68,"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":1532,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1239,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1014,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":113,"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":250,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1533,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1128,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1806,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":819,"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":514,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1961,"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":2588,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2379,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2213,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":573,"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":947,"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":1080,"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":570,"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":2121,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1934,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1435,"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":414,"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":2272,"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":601,"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":417,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1864,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":180,"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":1623,"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":1193,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["extract",{"_index":320,"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":2153,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":748,"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":399,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1325,"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":1328,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1108,"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":1333,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":996,"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":7,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":574,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":719,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1140,"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":2723,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":94,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":1987,"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":1583,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1581,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1017,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2265,"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":2584,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":600,"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":2591,"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":2001,"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":1111,"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":2805,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2804,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2450,"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":2807,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2806,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2457,"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":2551,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2550,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2447,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2283,"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":2383,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2382,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2200,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2199,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1845,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1844,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1767,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1764,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2218,"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":2356,"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":1653,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":990,"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":1460,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2708,"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":2710,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":79,"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":2499,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":700,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2525,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":908,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1302,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":456,"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":2830,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":224,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":299,"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":895,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1692,"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":949,"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":343,"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":609,"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":2519,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2408,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2874,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1249,"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":268,"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":1287,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1054,"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":762,"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":951,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":828,"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":830,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":829,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2025,"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":939,"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":2929,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":549,"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":2582,"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":350,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2573,"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":2594,"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":1659,"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":2260,"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":265,"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":2851,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":632,"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":2131,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1607,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":537,"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":1387,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1567,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1966,"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":1968,"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":2087,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1066,"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":1855,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2024,"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":2577,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1217,"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":1021,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2288,"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":2877,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2872,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1173,"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":2660,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1745,"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":2632,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2878,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1321,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2664,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2555,"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":2558,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1647,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1315,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":999,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1693,"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":589,"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":1069,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":63,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1240,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":248,"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":2317,"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":230,"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":1370,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2649,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2055,"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":579,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1057,"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":1016,"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":1209,"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":1634,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1632,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1633,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":692,"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":582,"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":1627,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":724,"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":1317,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2589,"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":1483,"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":1865,"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":432,"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":2688,"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":1919,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":824,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":685,"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/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":687,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2528,"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":50,"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":863,"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":1182,"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":2836,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2451,"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":1606,"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":510,"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":2469,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1625,"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":916,"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":240,"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":1129,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1055,"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":1025,"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":1726,"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":2657,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2496,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2497,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":198,"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":1341,"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":433,"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":1905,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1904,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":725,"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":1621,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1742,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1743,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1064,"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":1741,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1747,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":889,"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":1085,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1270,"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":1863,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1436,"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":1269,"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":663,"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":665,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":662,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":867,"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":1705,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":492,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1040,"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":1981,"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":881,"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":1480,"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":995,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":366,"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":2262,"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":1133,"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":765,"title":{},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1399,"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":1600,"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":505,"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":768,"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":772,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1898,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":246,"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":337,"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":65,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":451,"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":2433,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":955,"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":2065,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2680,"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":1028,"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":507,"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":950,"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":148,"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":556,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":558,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2204,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1778,"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":959,"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":117,"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":431,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":922,"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":2137,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":896,"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":199,"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":1739,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2625,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":711,"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":717,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1056,"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":454,"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":613,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2663,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1791,"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":774,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":801,"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":55,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1238,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":120,"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-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":1643,"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":357,"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":676,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1002,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":866,"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":502,"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":2504,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1185,"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":1420,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":862,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1125,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":590,"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":321,"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":1594,"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":144,"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":2740,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1841,"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":2342,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1120,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1679,"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":1857,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":728,"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":205,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2122,"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":127,"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":129,"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":1976,"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":1611,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["identifi",{"_index":879,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1613,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2019,"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":2344,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2249,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2343,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2248,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":420,"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":1907,"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":1224,"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":1689,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2314,"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":572,"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":2614,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":761,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":258,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2707,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1649,"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":1386,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2644,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":335,"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":30,"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":1817,"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":374,"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":301,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2487,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":328,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":38,"title":{"/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/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-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":1094,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1101,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":835,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":686,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1184,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":664,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":899,"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":1150,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":732,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1443,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1439,"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":2063,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1165,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1646,"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":1816,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1645,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1008,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":810,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":926,"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":1383,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":839,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":782,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1958,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":499,"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":1176,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1343,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1735,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1319,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":474,"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":1951,"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":1952,"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":1091,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2102,"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":489,"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":704,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":621,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":261,"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":607,"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":2096,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2290,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":490,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":59,"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":1881,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1880,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":62,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1612,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1434,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2116,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1255,"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":1595,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":592,"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":611,"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":2228,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1105,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1362,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1326,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2489,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1651,"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":580,"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":1261,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1067,"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":2227,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1723,"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":1736,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1701,"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":2659,"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":2617,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2261,"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":110,"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":2595,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2590,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":1997,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1332,"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":1327,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2719,"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":667,"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":2312,"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":2361,"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":2508,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2511,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2359,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2808,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":901,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":900,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2313,"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":2509,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2512,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2360,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2517,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1948,"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":2364,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1949,"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":2514,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2363,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1947,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1147,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2516,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1565,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1229,"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":1388,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1339,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":430,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":905,"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":411,"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":377,"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":389,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1218,"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":531,"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":630,"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":638,"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":903,"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":2054,"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":210,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":101,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":409,"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":756,"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":1337,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1228,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2381,"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":2781,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":484,"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":1593,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1130,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":548,"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":5,"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":814,"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":183,"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":1009,"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":2004,"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":1573,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1088,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":226,"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":2392,"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":2391,"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":581,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":904,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2185,"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":1511,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1520,"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":936,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2562,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1740,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":359,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":360,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":361,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":353,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/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":876,"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":1493,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1491,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":695,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1216,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1932,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":487,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":495,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":722,"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":1478,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2911,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1476,"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":1630,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1874,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1765,"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":1468,"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":351,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":631,"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":639,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":847,"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":942,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":953,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2611,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1971,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":703,"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/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":2133,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1837,"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":1030,"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":2674,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2648,"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":1051,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":543,"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":1212,"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":1215,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":992,"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":1227,"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":1149,"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":2396,"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":2315,"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":1801,"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":979,"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":1197,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1194,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":764,"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":2443,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1514,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":785,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":769,"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":1888,"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":1135,"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":2869,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2868,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":342,"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":1412,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":339,"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":640,"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":1419,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":20,"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":1821,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2141,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2749,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2748,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1823,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1100,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1637,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1642,"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":2871,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1719,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":911,"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":1638,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2111,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2140,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1662,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1644,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2885,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2847,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2870,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1922,"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":610,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":14,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":51,"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/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":2815,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2732,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2395,"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":2404,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2848,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":894,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2865,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1697,"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":1956,"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":1760,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1766,"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":1963,"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":1560,"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":2912,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1694,"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":1696,"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":2883,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2731,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1284,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2197,"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":1871,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":647,"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":2295,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":880,"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":788,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":475,"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":2000,"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":2045,"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":2838,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1804,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1897,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2431,"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":259,"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":453,"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":1598,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":142,"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":1839,"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":477,"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":2490,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":645,"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":2438,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":913,"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":2437,"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":2440,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":524,"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":1445,"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":2879,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":885,"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":1933,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1859,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":310,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2612,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":1983,"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":2050,"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":1660,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1156,"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":2074,"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":682,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2239,"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":172,"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":1226,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":53,"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":2761,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2759,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2760,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2597,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":542,"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":550,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":100,"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":56,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1018,"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":1020,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1022,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":730,"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":1832,"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":1344,"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":1347,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1562,"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":2044,"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":252,"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":1925,"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":8,"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":577,"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":449,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1825,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":21,"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":2143,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2092,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2599,"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":2088,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":846,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1755,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2252,"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":715,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2385,"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":2254,"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":2681,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2257,"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":2258,"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":384,"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":173,"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":540,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":190,"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":1442,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1752,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":415,"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":2086,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":133,"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":1657,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1162,"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":281,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":423,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2251,"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":2417,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1851,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1574,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1577,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1590,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":511,"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":1591,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1614,"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":2268,"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":2689,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":22,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":870,"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":2801,"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":2,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1045,"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":356,"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":2624,"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":401,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1187,"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":623,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1243,"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":334,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":599,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1190,"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":69,"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":2637,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1931,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["mid",{"_index":1786,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":698,"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":699,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1496,"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":2112,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2110,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1141,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1253,"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":1418,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":41,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":657,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":820,"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":1588,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":460,"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":1406,"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":1,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":552,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1454,"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":2478,"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":2554,"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":1861,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1280,"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":2676,"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":2741,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2160,"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":1751,"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":1393,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2474,"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":2691,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1221,"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":2553,"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":2357,"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":2173,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1585,"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":554,"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":178,"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":544,"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":2161,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1394,"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":416,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/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":2172,"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":196,"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":2430,"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":1774,"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":668,"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":1010,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1318,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1323,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":125,"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":1975,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":784,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1271,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2475,"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":1787,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1324,"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/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":1944,"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":602,"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":2901,"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":2902,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":541,"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":2103,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1367,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1838,"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":2903,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2316,"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":2609,"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":1452,"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":1617,"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":104,"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":1214,"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":775,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1338,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1974,"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":501,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":313,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1295,"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":2155,"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":1296,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1619,"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":1702,"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":2665,"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":375,"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":2291,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2857,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2347,"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":2346,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2348,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1820,"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":2858,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2540,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2367,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1818,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2859,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1152,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2860,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2782,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2861,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2062,"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":1819,"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":2349,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1842,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2412,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1437,"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":2715,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":808,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2064,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2714,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2061,"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":2600,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2411,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2538,"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":807,"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":1658,"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":1274,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":2636,"title":{},"keywords":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1441,"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":1163,"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":1166,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2384,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":642,"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":2049,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1103,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":920,"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":2157,"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":2217,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":95,"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":1927,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1928,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1826,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":0,"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":2229,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":564,"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":2476,"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":2491,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":619,"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":2814,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1796,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1668,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":849,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":551,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":28,"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":2880,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2827,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":23,"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/email/running-a-mail-server/":{},"/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":187,"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":1795,"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":89,"title":{"/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":2341,"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":2340,"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":2722,"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":827,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2320,"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":2225,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2319,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1499,"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":2368,"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":2667,"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":2542,"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":2351,"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":1989,"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":2318,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2232,"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":2231,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1500,"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":1683,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2234,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2583,"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":2336,"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":2226,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":1988,"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":1498,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2724,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2233,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1413,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1310,"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":2661,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":555,"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":877,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":873,"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":132,"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":114,"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":1131,"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":383,"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":143,"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":1299,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":858,"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":{}}],["note",{"_index":1601,"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":410,"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":1006,"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":307,"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":306,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":690,"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":2894,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2047,"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":848,"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":853,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2182,"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":569,"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":1061,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":70,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1109,"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":1371,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1121,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2844,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":973,"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":978,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":975,"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":2011,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1201,"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":1663,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1724,"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":1512,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1482,"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":1181,"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":160,"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":2184,"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":2191,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":257,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":106,"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":1355,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2036,"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":1033,"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":2059,"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":1348,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":189,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":931,"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":696,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1235,"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":977,"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":1950,"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":2481,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2292,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2293,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2294,"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":2482,"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":2581,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2812,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2779,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":218,"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":954,"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":1260,"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":2756,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1654,"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":1007,"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":693,"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":2285,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2284,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":596,"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":1070,"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":1515,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":295,"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":277,"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/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":906,"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":2280,"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":2304,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2274,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2306,"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":2305,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2695,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2303,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1230,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2277,"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":2697,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2696,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2276,"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":2572,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2275,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2571,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2273,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2299,"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":928,"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":1609,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":298,"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":1256,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2426,"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":2561,"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":518,"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":2685,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":751,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1369,"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":2323,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2640,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1813,"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":403,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":915,"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":1789,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2463,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":852,"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":1250,"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":2175,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":809,"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":983,"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":57,"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/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":656,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1403,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2916,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":595,"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":2085,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2887,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1311,"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":526,"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":316,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":707,"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":1945,"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":1294,"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":2093,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2090,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1641,"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":176,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":146,"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":670,"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":2205,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":659,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1582,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":919,"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":2181,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":17,"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":530,"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":614,"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":1005,"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":1357,"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":1894,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2267,"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":618,"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":2032,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1884,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":481,"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":1802,"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":2339,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1082,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":933,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/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":1522,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":90,"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":1812,"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":158,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":280,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":284,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2596,"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":2620,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2705,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":18,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":193,"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":1153,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2377,"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":1834,"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":2547,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2650,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1840,"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":1222,"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":1835,"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":2586,"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":2375,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2587,"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":2376,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1048,"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":1550,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1219,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1967,"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":2345,"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":1814,"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":2223,"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":1424,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":653,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":378,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2035,"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":2678,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2736,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2354,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2372,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2350,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2037,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2720,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2721,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1364,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1890,"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":25,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":177,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2253,"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":721,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2017,"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":780,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1425,"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":2187,"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":924,"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":927,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":925,"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":930,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2693,"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":566,"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":387,"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":1552,"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":1307,"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":1237,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1320,"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":1688,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":462,"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":1908,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1267,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1854,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":297,"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":1378,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":202,"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":2038,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":496,"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":1809,"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":1023,"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":2210,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1563,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1558,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2207,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2670,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2669,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2823,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2549,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2534,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2535,"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":2778,"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":2569,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2427,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2809,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2668,"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":2777,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2536,"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":2537,"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":155,"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":2607,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2410,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":116,"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":1132,"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":2309,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2821,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2541,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2598,"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":2820,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2835,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2822,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2310,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2783,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2606,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2409,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2784,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2785,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2621,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":276,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2713,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":9,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1788,"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":429,"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":522,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2675,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1777,"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":1969,"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":882,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1266,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1453,"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":380,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1004,"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":354,"title":{},"keywords":{},"toc":{"/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":2118,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":666,"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":2699,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":741,"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":744,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1829,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":945,"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":1610,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1448,"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":2400,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1455,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":485,"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":1356,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1937,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1536,"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":2425,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1916,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":244,"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/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":304,"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":545,"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":479,"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":1529,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":330,"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":2529,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2221,"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":798,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2841,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2908,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2618,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":533,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1790,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2070,"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":2795,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2071,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2796,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2797,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2767,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2300,"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":2072,"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":2075,"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":1524,"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":145,"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":438,"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":207,"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":137,"title":{"/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/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":2020,"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":1972,"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":159,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":740,"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":1465,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1063,"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":2629,"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":402,"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":710,"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":1291,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":712,"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":1290,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":107,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1052,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":727,"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":539,"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":2041,"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":2810,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1545,"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":1546,"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":1547,"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":300,"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":654,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":658,"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/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":42,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":800,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2564,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1038,"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":2559,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2563,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":344,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":643,"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":1555,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2150,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":212,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":941,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":789,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["rabbitmq",{"_index":346,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2289,"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":461,"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":1168,"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":1886,"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":1485,"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":2852,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1885,"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":2282,"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":2423,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rang",{"_index":2206,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2826,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["rate",{"_index":2407,"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":1211,"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":2279,"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":1924,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2813,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1461,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":231,"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/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":986,"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":837,"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":1733,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1725,"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":2073,"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":1995,"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":2831,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":27,"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":2106,"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":2101,"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":2134,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1513,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":327,"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":229,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":443,"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":2107,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":898,"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":2243,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":791,"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":593,"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":2483,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1161,"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":792,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2505,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2484,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2373,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2506,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2486,"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":2403,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2003,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1159,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2493,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2402,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2002,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1158,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1160,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2485,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":669,"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":2742,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2224,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2220,"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":2222,"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":2605,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2219,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2743,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":944,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":458,"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":1943,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1490,"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":1792,"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":834,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":723,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2526,"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":2520,"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":965,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1779,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2435,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1032,"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":1034,"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":1029,"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":1157,"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":2700,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1891,"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":126,"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":1104,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":367,"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":340,"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":892,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1198,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2389,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":604,"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":1044,"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":1042,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1043,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1773,"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":1510,"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":255,"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":221,"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":147,"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":195,"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":523,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":10,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1096,"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":2189,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":917,"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":2615,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":871,"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":2057,"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":2060,"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":716,"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":1572,"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":1407,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2770,"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":491,"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":182,"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":2146,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{}},"deprecated":{}}],["result",{"_index":1895,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":786,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1330,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":242,"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":136,"title":{"/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/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":1462,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":138,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":966,"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":878,"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":1381,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1860,"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":2084,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":578,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1039,"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":469,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":918,"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":2846,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2066,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":818,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":779,"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":1246,"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":1248,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1639,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2442,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":253,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1037,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2913,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1521,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":985,"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":{}}],["rsync",{"_index":1918,"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":412,"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":1484,"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":1169,"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":1171,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":269,"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":1380,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":331,"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":1906,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1797,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":470,"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":1384,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1385,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1469,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1467,"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":472,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":817,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":471,"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":140,"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":2067,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2322,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2209,"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":1450,"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":2926,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":446,"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":561,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":532,"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":2144,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1268,"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":1605,"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":2834,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2390,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":232,"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":239,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":319,"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":83,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":705,"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":308,"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":419,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1390,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":907,"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":652,"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":2704,"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":2464,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":262,"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":2397,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1444,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1440,"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":823,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":956,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":822,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2518,"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":961,"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":758,"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":2744,"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":2745,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":821,"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":1024,"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":2214,"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":1962,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1447,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":597,"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":1047,"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":73,"title":{"/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/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":714,"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":1903,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1596,"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":216,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1191,"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":1592,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":86,"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/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":1941,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":317,"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":1360,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":121,"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/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":1661,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":616,"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":661,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":909,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1695,"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":2716,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":286,"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":288,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":795,"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":186,"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":1867,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1554,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":332,"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":1706,"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":2683,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":923,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2094,"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":1314,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1259,"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":1597,"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":759,"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":336,"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":463,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":459,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":85,"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":2287,"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":2881,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":164,"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":1359,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1361,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":498,"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":1674,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2051,"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":478,"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":2656,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2925,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1670,"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":362,"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":1849,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2703,"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":1086,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2666,"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":1026,"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":1964,"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":468,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1126,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2027,"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":2552,"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":2895,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2470,"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":2530,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2082,"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":1798,"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":61,"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":1799,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":285,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":752,"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":680,"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":2735,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2753,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2386,"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":235,"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":291,"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":2627,"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":1189,"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":1909,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1780,"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":563,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":503,"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":2352,"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":2711,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":718,"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":141,"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":3,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":260,"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":868,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1233,"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":324,"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":1415,"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":1538,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2028,"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":251,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":162,"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":2278,"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":157,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2706,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2176,"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":2338,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1784,"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":1831,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1830,"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":2896,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":612,"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":2789,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2717,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1087,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2039,"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":1084,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2788,"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":2790,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2791,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":644,"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":1113,"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":2747,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1112,"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":2399,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2746,"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":1676,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1680,"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":1677,"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":1681,"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":2365,"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":1687,"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":981,"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":214,"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":217,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":493,"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":395,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1700,"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":1122,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2840,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":11,"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":1587,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1316,"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":1050,"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":1540,"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":2652,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1466,"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":2641,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1397,"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":1669,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":1622,"title":{},"keywords":{"/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":16,"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":36,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":776,"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":1231,"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":1208,"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":773,"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":1232,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":93,"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/email/running-a-mail-server/":{},"/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":2201,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":538,"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":92,"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":185,"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":1073,"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":897,"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":1072,"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":2098,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2097,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":691,"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":1123,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1200,"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":2522,"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":963,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":289,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":390,"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":2014,"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":445,"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":2757,"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":1089,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":515,"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":1618,"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":2521,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2725,"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":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2266,"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":2203,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":6,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":890,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":34,"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":422,"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":2904,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1013,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2726,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":184,"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":1106,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":626,"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":628,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":629,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":679,"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":1762,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2432,"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":1489,"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":2633,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2635,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":80,"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/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":1411,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":282,"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":1930,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2321,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":675,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":296,"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":2733,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":605,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1856,"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":1035,"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":1578,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":322,"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":2524,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":486,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1279,"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":952,"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":24,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1923,"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":2498,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":560,"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":167,"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":1154,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":838,"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":840,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":841,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1395,"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":2043,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1526,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1566,"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":1569,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1568,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1457,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":369,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2135,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2619,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2129,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":598,"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":1942,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1748,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":312,"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":2884,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":436,"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":1252,"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":139,"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":1650,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":567,"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":701,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":135,"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":2593,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":833,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1179,"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":935,"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":1640,"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":1576,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1575,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":622,"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":267,"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":1848,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2136,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1902,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":161,"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/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":968,"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":2462,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2030,"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":617,"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":987,"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":237,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":708,"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":264,"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":1665,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":736,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":745,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":311,"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":1049,"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":1119,"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":2882,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1584,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1144,"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":1146,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2867,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1148,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":884,"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":504,"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":1079,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":694,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1060,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2419,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2610,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":303,"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":2256,"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":266,"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":2099,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1000,"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":1124,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1368,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":709,"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":398,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":753,"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":804,"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":2698,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":1984,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1278,"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":1451,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":989,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1805,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":988,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":702,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":278,"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":1571,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1065,"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":1548,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":781,"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":2012,"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":123,"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":1059,"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":1915,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1210,"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":287,"title":{"/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/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":2472,"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":2568,"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":2366,"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":2416,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2429,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2413,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2566,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2158,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2216,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2236,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2190,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2194,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1746,"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":2077,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1980,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1172,"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":1629,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":1986,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1833,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":857,"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":888,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2824,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2910,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2866,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2765,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2461,"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":2780,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2766,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2058,"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":2215,"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":1286,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2818,"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":2673,"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":2608,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2008,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1628,"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":2076,"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":1887,"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":2471,"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":2671,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2337,"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":2414,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2159,"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":2237,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2192,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2195,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1878,"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":2009,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2078,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1352,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1283,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2604,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1631,"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":2010,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2174,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2247,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1655,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":585,"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":1285,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1289,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1423,"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":2056,"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":2333,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2334,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1180,"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":1282,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2374,"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":275,"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":940,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1167,"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":1170,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1940,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2387,"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":2634,"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":620,"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":373,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2031,"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":1501,"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":2042,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2837,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1308,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":527,"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":2120,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":743,"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":122,"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/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":32,"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":1001,"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":1913,"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":660,"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":1579,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":338,"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":74,"title":{"/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":78,"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":2557,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2556,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":283,"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":2069,"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":2132,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1027,"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":1921,"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":1276,"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":1487,"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":1488,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":797,"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":1366,"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":241,"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":1046,"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":1811,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1604,"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":1803,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":465,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2018,"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":1893,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":861,"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":52,"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":1183,"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":1138,"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":948,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":54,"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":650,"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":565,"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":760,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":329,"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":1960,"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":1458,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1492,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2422,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":655,"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":1749,"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":1910,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":227,"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":2269,"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":2421,"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":370,"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":1750,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1298,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1297,"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":1363,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":209,"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":457,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":407,"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":1456,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1254,"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":179,"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":4,"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":447,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":971,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":305,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2079,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":938,"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":517,"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":192,"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":1836,"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":1666,"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":2006,"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":1137,"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":1350,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":325,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":683,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":672,"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":1846,"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":2802,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":635,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1281,"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":2270,"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":1303,"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":1247,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":733,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1698,"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":243,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2771,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":588,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":233,"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":1868,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":60,"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":1722,"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":2468,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":424,"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":428,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":865,"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":1495,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":13,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1535,"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":1914,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1077,"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":2488,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":174,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":326,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2013,"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":1534,"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":1225,"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":58,"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":2793,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2794,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2811,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2792,"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":406,"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":777,"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":181,"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":738,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":982,"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":497,"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":2503,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":500,"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":382,"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":806,"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":348,"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":1883,"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":1635,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1078,"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":118,"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":1175,"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":1178,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1309,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1525,"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":249,"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/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":766,"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":587,"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":1771,"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":1770,"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":1768,"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":2281,"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":1494,"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":1134,"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":1136,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":372,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":1996,"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":1953,"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":1999,"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":1058,"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":2501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":506,"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":2919,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1721,"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":1624,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2839,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":747,"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":220,"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":466,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2080,"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":455,"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":2527,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1342,"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":2622,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2325,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1345,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1346,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2328,"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":2623,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2579,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2329,"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":2819,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2327,"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":2580,"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":1349,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2326,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2578,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2495,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":559,"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":1734,"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":1737,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1376,"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":2048,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1075,"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":1936,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2694,"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/quick-answers/linux/compress-files-using-the-command-line/":{"title":"Archive, Compress, and Extract Files in Linux Using the Command Line","deprecated":null,"shortguide":null},"/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/tools-reference/tools/divide-files-with-split/":{"title":"How to Divide Files with split","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/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 Icinga 2 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/web-servers/caddy/compile-caddy-from-source/":{"title":"How To Build Caddy From Source","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":"How to Install FarmOS - a Farm Recordkeeping Application","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/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/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/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/quick-answers/linux/compress-files-using-the-command-line/",[0,4.48,1,3.947,2,4.052,3,1.634,4,1.679,5,0.761,6,2.289,7,3.17]],["keywords//docs/quick-answers/linux/compress-files-using-the-command-line/",[8,5.63,9,7.051,10,7.051,11,7.051]],["toc//docs/quick-answers/linux/compress-files-using-the-command-line/",[0,8.838,1,6.235,2,6.401,12,3.986,13,7.076,14,7.854,15,5.835,16,3.533]],["deprecated//docs/quick-answers/linux/compress-files-using-the-command-line/",[]],["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[17,1.247,18,6.18,19,3.292,20,3.502,21,1.345,22,1.507]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[19,3.451,20,3.671,21,1.41,23,5.627,24,5.173]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[17,1.959,19,6.14,25,6.777]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[26,0.067,27,5.631,28,0.86]],["keywords//docs/development/java/install-java-jdk/",[27,5.52,29,3.939,30,6.417]],["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/",[5,0.871,20,3.502,21,1.345,24,4.935,31,3.721,32,1.842]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[19,3.451,20,3.671,21,1.41,23,5.627,24,5.173]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[19,5.991,22,1.939,25,5.552,31,4.788,32,2.37,33,1.854,34,1.871,35,4.158,36,4.668,37,4.612]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[38,4.409,39,6.652,40,3.178,41,6.652]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[39,6.492,42,7.051,43,7.051,44,5.63]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[17,1.105,26,0.067,32,2.355,38,3.343,40,3.476,41,9.909,45,1.186,46,2.365,47,1.076,48,3.61,49,2.336,50,3.824,51,0.316,52,5.477,53,5.477,54,1.931,55,2.194,56,2.218,57,3.909,58,1.817,59,3.176,60,5.043,61,2.44,62,2.409]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[5,0.812,47,1.133,48,3.799,49,2.458,63,2.032,64,5.006,65,0.924]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[66,5.85,67,4.191,68,6.492,69,6.492]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[26,0.069,32,2.425,33,1.896,34,1.915,45,1.221,48,5.363,49,3.47,64,8.981,65,1.658]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/tools-reference/tools/divide-files-with-split/",[3,2.388,70,7.891,71,6.853]],["keywords//docs/tools-reference/tools/divide-files-with-split/",[3,2.134,71,6.124,72,4.303,73,6.492]],["toc//docs/tools-reference/tools/divide-files-with-split/",[3,3.017,7,3.672,16,2.591,35,4.54,45,0.939,54,2.205,71,9.355,74,4.465,75,4.368,76,6.256,77,7.203,78,5.19,79,5.76,80,6.256,81,6.256,82,5.434,83,3.718]],["deprecated//docs/tools-reference/tools/divide-files-with-split/",[]],["title//docs/development/go/install-go-on-ubuntu/",[26,0.067,28,0.86,84,4.884]],["keywords//docs/development/go/install-go-on-ubuntu/",[28,0.769,84,4.364,85,7.051,86,5.85]],["toc//docs/development/go/install-go-on-ubuntu/",[26,0.092,84,6.695,87,5.264,88,7.593,89,5.98,90,2.655]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[26,0.061,28,0.787,66,5.993,91,1.3]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[66,5.85,67,4.191,68,6.492,69,6.492]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[26,0.066,28,0.848,64,6.754,66,8.333,91,1.399,92,3.801,93,5.319,94,3.018,95,2.353,96,7.776,97,7.16,98,5.684]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[99,5.768,100,7.224,101,6.275,102,6.275]],["keywords//docs/platform/meltdown_statement/",[101,6.124,102,6.124,103,5.291,104,3.474]],["toc//docs/platform/meltdown_statement/",[61,1.797,99,3.22,101,5.455,102,3.503,103,3.026,104,3.8,105,4.033,106,4.033,107,7.222,108,4.033,109,4.033,110,1.671,111,4.033,112,4.033,113,6.281,114,3.026,115,4.482,116,4.591,117,6.281,118,2.879,119,2.888,120,1.22,121,6.281,122,3.503,123,4.033,124,4.033,125,4.591,126,2.019,127,3.714,128,2.816,129,2.237,130,2.316,131,1.912,132,3.026,133,3.503,134,4.033,135,4.033]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[5,1.018,26,0.061,136,4.848,137,4.094]],["keywords//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[136,4.021,137,3.396,138,4.379,139,4.183,140,3.561,141,5.992]],["toc//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[26,0.052,29,3.13,33,1.433,34,1.446,136,7.174,137,6.6,142,2.227,143,5.339,144,4.908,145,6.147,146,6.147,147,6.147,148,7.449,149,2.147,150,4.493,151,3.804]],["deprecated//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[]],["title//docs/development/python/install_python_miniconda/",[26,0.061,55,2.894,152,5.581,153,6.652]],["keywords//docs/development/python/install_python_miniconda/",[153,7.122,154,7.735,155,7.735]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[26,0.061,28,0.787,91,1.3,136,4.848]],["keywords//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[136,4.348,156,5.627,157,2.079,158,5.965,159,1.821]],["toc//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_centos/",[26,0.053,136,4.148,157,1.983,159,1.737,160,6.18,161,6.18]],["keywords//docs/databases/elasticsearch/install_elasticsearch_centos/",[136,4.348,156,5.627,157,2.079,158,5.965,159,1.821]],["toc//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["title//docs/applications/containers/install_docker_ce/",[26,0.067,162,3.428,163,6.096]],["keywords//docs/applications/containers/install_docker_ce/",[162,3.36,164,4.121,165,7.735]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[26,0.067,162,3.428,166,5.767]],["keywords//docs/applications/containers/install_docker_compose/",[162,3.36,164,4.121,167,7.735]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[4,2.453,26,0.067,168,4.053]],["keywords//docs/development/version-control/how-to-install-git-linux/",[4,2.405,168,3.973,169,4.598]],["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/",[26,0.067,168,4.053,170,4.576]],["keywords//docs/development/version-control/how-to-install-git-mac/",[168,3.973,169,4.598,170,4.486]],["toc//docs/development/version-control/how-to-install-git-mac/",[26,0.1,95,2.353,168,5.715,171,7.211,172,7.16,173,7.16]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[26,0.067,168,4.053,174,4.018]],["keywords//docs/development/version-control/how-to-install-git-windows/",[168,3.973,169,4.598,174,3.939]],["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/",[175,5.102,176,7.211]],["keywords//docs/development/introduction-to-websockets/",[176,5.85,177,4.648,178,7.051,179,7.051]],["toc//docs/development/introduction-to-websockets/",[17,1.413,65,1.123,176,10.429,180,4.616,181,7.003,182,3.023,183,5.254,184,5.809,185,6.448,186,6.448,187,3.506]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[63,2.781,162,3.428,188,6.853]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[46,2.406,47,1.095,162,2.421,188,4.84,189,4.84,190,5.131,191,2.941]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[5,0.914,26,0.076,33,1.512,34,1.526,46,2.8,47,1.275,90,1.97,142,2.35,162,4.415,164,3.456,166,6.507,188,7.732,192,3.636,193,1.863,194,5.011,195,5.011,196,4.741]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[5,1.112,162,3.428,166,5.767]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[162,3.721,166,6.261]],["toc//docs/applications/containers/how-to-use-docker-compose/",[3,1.657,26,0.067,33,1.277,34,1.289,40,2.409,47,1.076,54,1.931,58,3.075,61,2.44,62,2.409,74,3.909,162,4.027,163,4.231,166,6.776,197,3.824,198,2.765,199,2.126,200,5.043,201,4.757,202,3.909,203,3.254,204,2.506,205,3.39,206,3.39]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,2.186,207,7.224,208,5.993,209,6.275]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[55,3.099,73,7.122,209,6.719]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,1.71,5,1.139,12,4.41,15,3.867,26,0.069,55,2.265,120,1.71,159,1.589,171,3.664,209,9.463,210,5.653,211,4.91,212,9.436,213,5.653,214,2.929,215,5.653,216,3.726,217,5.653,218,3.794,219,4.034]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[162,3.428,164,4.204,182,3.407]],["keywords//docs/applications/containers/docker-container-communication/",[22,1.719,162,3.063,164,3.757,220,7.051]],["toc//docs/applications/containers/docker-container-communication/",[5,0.76,17,1.089,22,1.315,26,0.067,32,1.607,33,1.257,34,1.269,35,2.82,45,0.809,46,2.328,51,0.311,151,3.338,162,4.377,163,4.166,164,5.368,166,3.942,182,3.968,199,2.093,221,3.555,222,3.849,223,3.765,224,3.128,225,1.395,226,3.206]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[225,1.869,227,2.09,228,3.477,229,5.581]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[91,1.269,227,2.04,229,5.447,230,6.492]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[32,1.607,33,1.257,34,1.269,45,0.809,51,0.311,150,5.712,159,1.516,171,5.065,187,2.7,202,3.849,225,2.377,227,3.095,228,3.761,229,7.1,231,4.601,232,2.26,233,3.056,234,2.991,235,2.503,236,4.966]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[22,1.761,31,4.35,32,2.153,46,3.119]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[19,3.192,46,2.587,237,3.883,238,5.992,239,5.992,240,5.992]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[19,3.806,22,2.603,33,1.665,34,1.681,36,4.194,37,4.144,61,3.184,62,3.143,228,3.439,241,4.63,242,4.795,243,5.099,244,7.145,245,4.988,246,5.099]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[40,3.178,247,4.409,248,6.652,249,6.652]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[247,5.749,250,7.051,251,5.63]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[3,1.56,5,1.065,19,2.747,25,3.6,33,1.202,34,1.213,120,1.56,247,3.147,248,9.083,249,9.083,251,8.388,252,3.983,253,5.156,254,2.625,255,4.747,256,7.563,257,4.75,258,4.478,259,3.68,260,3.983,261,4.478,262,2.376,263,3.769]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,1.87,159,1.737,232,2.589,264,3.324,265,5.127,266,5.368]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[266,6.719,267,4.787,268,7.735]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[20,3.817,22,1.642,26,0.095,33,1.57,34,1.585,65,1.464,84,4.168,193,1.934,266,5.849,269,0.93,270,1.73,271,6.735,272,2.499,273,3.021,274,4.168,275,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/",[5,0.871,50,4.315,119,1.892,193,1.775,228,2.974,276,3.628]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[50,4.183,119,1.834,162,2.603,164,3.192,228,2.884,277,5.517]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,1.378,5,1.172,12,2.129,26,0.071,32,1.358,45,0.684,47,0.895,50,3.18,61,2.03,62,2.004,119,1.394,120,1.378,162,1.979,164,4.433,182,2.977,192,5.202,225,1.178,228,4.005,276,4.884,277,6.349,278,2.45,279,4.555,280,4.555,281,3.957,282,4.555,283,3.957,284,3.779,285,4.555,286,2.427,287,4.555]],["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/",[5,0.715,47,0.998,65,0.814,138,3.713,159,1.428,193,1.459,227,1.47,232,2.128,288,2.911]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[47,1.095,159,1.566,193,1.601,288,3.194,289,5.573,290,5.573,291,5.573]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[5,0.748,17,1.072,26,0.078,33,1.238,34,1.25,44,4.241,47,1.044,51,0.306,136,5.187,138,5.649,288,5.222,292,4.406,293,2.83,294,4.104,295,2.448,296,3.791,297,9.111,298,9.111,299,6.412,300,4.241,301,5.312,302,4.241,303,3.882]],["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/",[304,6.275,305,3.679,306,6.652,307,6.652]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[40,2.85,55,2.595,304,5.627,308,6.478,309,6.478]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[26,0.073,32,1.413,37,2.749,40,2.085,45,0.711,55,1.899,89,3.242,185,4.364,193,1.361,198,2.393,203,1.952,272,1.759,273,2.126,304,4.117,306,7.847,307,8.717,310,2.112,311,4.739,312,3.556,313,5.673,314,4.739,315,2.657,316,3.661,317,3.932,318,4.739,319,2.782,320,3.124,321,7.105,322,4.739,323,4.364,324,4.739,325,2.817,326,3.661]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[26,0.053,91,1.112,93,4.227,227,1.788,229,4.774,231,3.094]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[91,1.269,227,2.04,229,5.447,230,6.492]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[5,0.642,17,0.919,22,1.111,26,0.059,33,1.062,34,1.072,51,0.397,171,4.469,193,2.39,229,8.103,231,5.252,236,4.194,327,4.555,328,4.194,329,3.18,330,3.637,331,4.521,332,1.118,333,3.33,334,3.18,335,4.628,336,2.861,337,3.2,338,2.192,339,2.78,340,1.666]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[46,3.753,51,0.501]],["keywords//docs/databases/postgresql/configure-postgresql/",[22,1.359,46,2.406,237,3.612,341,2.451,342,5.573,343,5.573,344,5.573]],["toc//docs/databases/postgresql/configure-postgresql/",[3,1.927,15,4.357,16,3.641,22,1.553,33,1.485,34,1.499,46,3.795,51,0.506,149,3.071,237,4.128,336,4,345,4.198,346,6.369,347,3.942,348,3.361,349,6.369,350,6.369,351,1.759,352,6.369]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[17,1.09,28,0.589,49,2.303,65,0.866,159,1.518,232,2.263,353,5.4,354,4.69]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[28,0.653,49,2.555,159,1.684,354,5.204,355,5.992,356,5.992]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[17,1.026,26,0.076,33,1.185,34,1.196,51,0.293,57,3.627,58,1.685,65,1.2,84,3.145,94,1.972,170,2.947,174,2.588,187,4.905,216,3.35,275,3.476,310,2.264,338,2.446,354,9.809,357,2.221,358,4.057,359,5.082,360,4.679,361,3.476,362,2.947,363,3.06]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[183,5.421,227,2.09,364,5.156,365,6.275]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[55,2.595,227,1.874,365,5.627,366,6.478,367,6.478]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[17,1.939,26,0.07,32,1.741,45,0.877,55,2.34,56,2.365,90,1.774,110,2.419,120,1.767,148,5.073,152,4.512,183,6.208,203,2.405,364,4.168,365,5.073,368,3.785,369,9.608,370,5.841,371,4.168,372,3.92,373,4.078,374,5.841]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[5,1.018,375,6.275,376,4.848,377,6.652]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[144,4.45,375,4.84,376,3.74,377,5.131,378,4.84,379,5.131,380,3.977]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[3,1.963,6,2.75,17,1.309,26,0.055,51,0.374,120,3.075,144,5.179,174,3.303,375,10.728,378,5.634,379,5.972,380,6.353]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[2,4.637,5,0.871,40,2.719,381,5.368,382,5.69,383,5.368]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[55,2.595,381,5.627,384,5.965,385,5.965,386,6.478]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[5,0.532,6,1.6,7,2.215,17,0.762,26,0.071,33,0.88,34,0.888,45,1.109,55,1.512,91,0.679,93,2.581,110,1.563,115,2.693,152,2.915,159,1.061,169,2.243,192,3.342,203,1.554,227,1.092,232,1.581,286,2.011,317,3.131,320,2.488,337,1.751,351,2.04,381,7.291,384,3.475,385,6.804,387,3.475,388,2.635,389,3.774,390,1.038,391,3.864,392,2.073,393,2.446,394,3.774,395,2.03,396,3.774,397,0.546,398,3.475,399,2.758,400,2.189,401,2.272,402,1.789,403,2.693,404,2.635]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[32,1.842,45,0.928,246,4.411,405,5.69,406,5.368,407,5.69]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[55,2.595,246,4.623,341,2.85,406,5.627,408,6.478]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[26,0.089,33,1.202,34,1.213,55,3.03,110,3.71,152,3.983,192,4.239,199,2.001,227,2.188,246,3.68,320,3.399,341,3.327,351,1.424,387,4.747,390,1.419,406,9.124,407,4.747,409,6.039,410,3.68,411,5.156,412,5.156]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[63,2.781,224,4.576,413,6.853]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[162,3.063,164,3.757,413,6.124,414,5.85]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[26,0.086,58,2.151,63,2.286,142,2.35,162,2.818,163,5.011,192,3.636,203,2.671,224,3.762,225,1.678,413,9.501,415,4.437,416,3.959,417,5.011,418,4.529,419,5.972,420,4.867]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[26,0.053,47,1.214,51,0.356,63,2.178,341,2.719,414,5.127]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[47,1.273,63,2.284,162,2.814,164,3.451,414,5.374]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[26,0.073,33,1.12,34,1.131,45,0.721,47,0.944,51,0.277,63,1.693,119,2.197,142,1.741,162,3.118,203,1.979,225,1.243,233,4.869,234,3.98,263,3.512,341,3.157,414,9.458,421,3.064,422,2.61,423,1.767,424,3.985,425,4.804,426,4.804,427,4.804,428,3.064]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[5,1.224,162,3.776]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[162,3.36,164,4.121,429,7.735]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[5,1.547,151,5.548,162,5.16,430,7.437]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[5,0.871,98,4.517,267,3.825,269,0.853,390,1.701,431,5.69]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[432,4.84,433,5.573,434,5.573,435,4.073,436,5.573,437,5.573,438,5.573]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[21,1.656,26,0.065,65,1.22,119,2.329,126,3.809,162,3.305,182,3.285,348,4.015,431,10.139,435,5.561,439,4.581,440,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[28,0.787,36,4.24,198,3.647,441,6.275]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[36,4.139,441,6.124,442,6.492,443,7.051]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[26,0.046,32,0.997,33,0.779,34,0.787,35,1.748,36,1.963,44,2.67,45,0.502,51,0.193,56,1.354,63,1.179,89,2.287,90,1.644,110,1.385,137,1.895,150,2.444,197,2.334,198,1.688,199,2.1,221,2.204,258,2.904,315,1.874,320,2.204,325,1.987,326,2.583,345,2.204,392,1.163,395,1.799,441,7.473,442,7.213,444,3.344,445,3.344,446,3.141,447,2.069,448,5.411,449,5.411,450,3.344,451,3.344,452,2.583,453,3.079,454,2.774,455,2.1,456,3.344,457,8.604,458,3.344,459,2.774,460,3.344,461,5.411,462,3.344,463,3.344,464,2.774,465,3.344,466,3.344,467,3.344]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[28,0.726,32,1.985,45,1,468,5.526,469,3.452]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[468,7.106,469,4.439]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[26,0.054,32,1.898,45,0.956,51,0.367,58,2.112,61,2.838,62,2.802,65,1.409,90,1.935,104,3.138,110,2.638,130,1.913,182,3.795,187,4.401,338,3.065,339,3.887,468,9.004]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[470,6.652,471,5.768,472,5.993,473,6.275]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[55,2.825,471,5.63,473,6.124,474,3.687]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[3,1.767,5,0.823,17,1.179,26,0.05,33,1.361,34,1.374,51,0.337,126,2.924,203,2.405,415,3.995,418,4.078,471,6.606,472,6.864,473,7.186,474,3.054,475,5.073,476,4.982,477,5.841,478,3.85,479,5.841,480,3.274,481,5.841,482,2.811,483,5.841]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[5,0.938,63,2.348,199,2.585,276,3.91,484,5.786]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[162,3.36,276,4.54,484,6.719]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[32,2.139,33,1.12,34,1.131,35,5.799,45,1.077,51,0.414,61,2.141,62,2.113,86,3.985,110,1.99,169,2.855,196,3.512,199,3.334,203,1.979,484,8.86,485,4.804,486,2.278,487,2.723,488,4.804,489,4.804,490,7.177,491,3.167,492,5.122,493,4.804]],["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/",[5,0.938,119,2.039,192,3.734,281,5.786,494,5.786]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[119,2.158,128,4.923,137,3.996,494,6.124]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[26,0.073,28,0.524,33,1.12,34,1.131,35,2.512,51,0.549,54,2.53,63,1.693,65,1.378,83,2.855,86,3.985,87,2.893,90,1.459,92,2.348,119,2.917,120,1.454,128,5.011,137,2.723,198,2.426,226,2.855,245,3.354,273,3.219,452,3.711,494,7.463,495,3.017,496,4.173]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[119,2.039,120,2.016,203,2.743,497,5.526,498,4.123]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[402,3.072,497,5.374,498,4.01,499,2.294,500,4.861]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[203,4.455,214,4.53,245,6.103,497,8.973,498,6.695]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[501,6.546,502,7.891,503,6.096]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[103,4.861,501,5.374,503,5.005,504,6.478,505,6.478]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[26,0.076,33,2.09,34,2.11,175,5.262,351,2.475,501,7.437,503,6.926]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[5,1.018,329,5.044,506,5.581,507,5.421]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[506,5.976,508,6.176,509,5.804]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[26,0.069,33,1.896,34,1.915,51,0.596,227,2.354,329,5.68,392,2.829,439,4.899,506,6.285,507,6.105]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[5,1.018,28,0.787,92,3.531,510,6.275]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[510,4.524,511,4.796,512,5.209,513,4.159,514,5.209,515,4.159,516,4.796,517,4.024]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[17,0.957,26,0.04,32,1.413,33,1.105,34,1.115,40,2.085,245,3.309,254,2.413,330,3.784,372,3.181,388,3.309,446,2.184,452,3.661,510,9.589,513,3.784,515,5.673,516,7.847,517,7.835,518,4.739,519,4.739,520,8.522,521,8.522,522,4.739,523,4.364,524,4.739]],["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/",[5,0.761,51,0.311,252,4.172,267,4.841,281,4.69,351,1.491,525,3.559]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[525,5.099,526,7.122,527,7.735]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,1.731,5,0.505,17,1.441,26,0.03,32,1.705,33,0.835,34,0.843,45,0.858,51,0.47,56,1.451,78,2.971,119,1.096,120,1.084,126,1.793,171,2.321,192,2.008,218,2.404,252,5.516,267,6.773,331,1.946,392,1.246,397,0.518,480,2.008,495,2.25,525,6.824,528,3.111,529,5.324,530,2.157,531,2.284,532,2.767,533,2.321,534,3.298,535,2.556,536,3.298,537,3.582]],["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/",[40,2.719,267,3.825,538,4.774,539,3.772,540,5.69,541,5.69]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[206,3.449,247,3.401,364,3.977,513,4.45,539,3.401,542,5.573,543,4.45]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[5,0.926,6,1.814,7,2.511,26,0.036,32,1.959,33,0.997,34,1.007,45,0.987,51,0.247,61,1.906,62,1.882,65,0.686,119,1.31,120,1.295,187,2.142,193,1.229,203,1.762,206,4.069,233,3.726,272,1.588,278,2.301,325,2.543,331,3.571,388,2.987,540,9.423,541,8.272,544,6.574,545,2.773,546,6.574,547,3.549,548,3.549,549,6.574,550,3.716]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[32,1.514,45,0.762,119,1.555,214,2.632,245,3.546,269,0.701,392,1.766,551,2.847,552,2.706]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[553,6.124,554,6.124,555,7.051,556,6.124]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[26,0.066,33,1.813,34,1.83,51,0.579,214,4.03,225,2.012,269,1.073,390,2.14,529,4.359,551,6.237]],["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/",[26,0.046,51,0.311,341,2.375,392,1.878,557,4.69,558,4.312,559,4.312,560,4.312]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[557,6.124,559,5.63,560,5.63,561,6.124]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[26,0.034,33,0.919,34,0.928,51,0.495,61,1.757,84,2.44,94,1.53,164,2.101,187,3.09,199,2.95,227,1.141,234,2.187,257,4.774,341,3.344,345,2.599,392,1.371,393,2.555,422,5.071,543,3.148,557,9.56,560,6.07,562,3.425,563,7.469,564,3.631,565,3.631,566,2.753,567,3.631,568,3.943,569,3.271,570,2.043]],["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/",[65,0.866,138,3.947,159,1.518,232,2.263,288,3.095,300,4.312,332,1.325,571,4.972]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[572,6.417,573,7.122,574,7.735]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[26,0.085,32,1.188,33,0.93,34,0.938,45,0.598,47,0.784,48,4.103,49,2.655,51,0.359,65,0.639,84,2.468,120,1.207,130,1.197,136,5.139,138,4.55,180,2.629,182,1.722,203,1.642,216,2.629,225,1.032,269,0.55,275,2.728,288,4.389,299,7.785,351,1.101,362,2.313,499,1.412,500,4.671,571,7.967,572,3.308,575,3.988,576,3.988,577,3.988,578,5.407]],["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/",[26,0.049,32,1.718,45,0.865,152,4.453,233,3.266,341,2.535,559,4.602]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[559,6.176,560,6.176,561,6.719]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[3,1.478,17,0.596,33,0.688,34,0.694,40,1.298,45,1.209,51,0.5,61,1.315,62,1.298,88,2.563,89,2.019,94,1.145,110,2.024,131,1.399,149,1.031,192,1.654,225,0.763,227,1.809,233,4.119,234,1.637,262,1.36,341,2.149,348,1.557,351,0.815,392,1.699,422,2.654,428,1.882,496,2.563,532,2.28,559,5.803,560,6.929,561,7.538,562,2.563,563,4.244,569,2.448,579,4.244,580,2.448,581,2.106,582,2.951,583,2.951,584,3.22,585,2.448,586,2.717,587,1.945,588,2.717,589,2.563,590,2.448,591,2.448,592,3.068,593,2.563,594,2.951]],["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/",[194,5.146,595,5.526,596,4.184,597,5.319,598,6.134]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[55,2.232,189,4.84,599,5.573,600,5.131,601,5.131,602,5.573,603,5.573]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[17,1.141,22,1.378,26,0.048,32,2.409,33,1.318,34,1.33,45,1.213,55,2.265,61,2.519,62,2.487,90,1.717,142,2.048,180,6.22,189,7.021,192,3.169,225,1.462,390,2.224,597,4.514,598,7.443,601,5.205,604,5.653,605,5.653,606,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/",[5,0.938,36,3.91,607,5.786,608,6.134,609,6.134]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[36,4.139,221,4.648,607,6.124,610,7.051]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[17,1.472,26,0.082,33,1.7,34,1.716,36,5.654,37,4.229,56,3.901,203,3.003,221,4.807,392,3.35,584,4.807,607,6.334]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[5,0.871,21,1.345,51,0.356,65,0.991,162,2.685,611,4.774]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[162,3.36,368,5.013,611,5.976]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[19,4.939,21,1.192,22,1.335,26,0.047,33,1.277,34,1.289,40,2.409,51,0.534,58,1.817,65,1.486,90,1.664,95,1.657,162,3.433,166,4.003,310,2.44,338,3.803,611,7.841,612,4.373,613,5.043,614,4.231,615,5.477]],["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/",[26,0.057,137,3.775,616,5.786,617,5.146,618,5.319]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[137,3.396,616,5.204,617,4.629,619,4.183,620,4.784,621,5.517]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[16,2.2,26,0.078,33,1.238,34,1.25,51,0.306,118,3.791,120,2.339,137,5.67,392,1.847,616,9.234,617,5.971,618,4.241,621,4.891,622,4.891,623,5.312,624,3.501,625,3.882,626,5.312,627,5.312,628,3.287,629,3.791,630,5.312,631,5.312]],["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/",[51,0.416,469,3.743,632,4.762,633,7.224]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[332,2.102,469,4.439]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[5,1.238,33,1.485,34,1.499,50,4.447,51,0.367,187,4.401,211,5.532,338,4.231,363,3.835,397,0.921,469,4.555,570,3.3,632,4.198,634,5.284,635,6.369,636,6.369,637,4.779,638,6.369,639,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[32,2.153,45,1.084,65,1.158,611,5.581]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[368,5.552,611,6.618]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[26,0.066,33,1.238,34,1.25,51,0.613,65,1.705,90,1.613,95,2.339,193,2.22,310,3.444,338,3.72,351,1.467,423,1.308,587,3.501,611,7.73,612,4.241,613,4.891,640,5.312,641,3.882]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[3,2.016,32,1.985,45,1,269,0.92,642,4.184]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[269,1.183,642,5.38]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[12,2.976,17,1.286,33,1.485,34,1.499,45,0.956,175,3.739,316,4.92,317,5.284,340,2.33,373,4.447,530,3.835,566,4.447,642,6.322,643,7.635,644,5.909,645,4.274,646,6.369,647,4.545]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[26,0.061,91,1.3,93,4.942,648,6.275]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[162,3.36,390,2.128,648,6.719]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[16,1.73,17,0.843,26,0.036,33,0.974,34,0.983,51,0.454,57,2.981,63,1.472,84,2.585,94,1.621,95,1.264,104,2.058,164,4.201,203,1.72,255,5.942,275,2.857,284,5.354,295,1.925,363,2.515,401,3.886,591,3.465,648,8.329,649,2.916,650,5.605,651,6.453,652,3.465,653,5.942,654,2.803,655,3.846,656,3.134,657,4.177,658,2.483,659,6.542,660,3.06]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[644,4.24,661,4.537,662,7.224,663,4.35]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[663,5.672,664,7.521]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[119,2.971,120,2.937,380,6.927,665,4.353]],["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/",[5,0.761,17,1.09,46,2.331,341,2.375,506,4.172,531,3.444,666,5.4,667,4.972]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[22,1.886,46,3.339,341,3.403]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[26,0.092,33,1.458,34,1.472,46,3.748,51,0.574,61,2.787,62,2.752,90,1.9,114,4.694,115,4.465,506,6.707,550,5.434,667,7.994,668,8.682,669,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/",[32,1.842,45,0.928,469,3.203,670,5.368,671,7.927]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[28,0.706,159,1.821,332,1.59,469,3.357,670,5.627]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[3,2.441,5,0.61,12,2.024,17,1.825,26,0.037,28,0.472,33,1.01,34,1.019,51,0.382,54,1.527,56,1.754,63,1.527,90,1.316,92,2.117,118,3.091,225,1.12,226,2.574,233,3.761,267,2.681,397,0.626,446,1.996,469,4.685,486,2.054,634,3.593,669,2.428,670,9.298,672,1.815,673,3.988,674,4.331,675,3.091,676,4.331,677,4.331,678,4.331]],["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/",[17,1.247,119,1.892,120,1.87,162,2.685,233,3.502,679,5.368]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[162,2.814,164,3.451,680,6.478,681,6.478,682,6.478]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[17,1.57,33,1.813,34,1.83,58,2.579,63,2.741,120,3.039,162,4.364,233,4.407,679,8.725,683,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/",[5,0.761,36,3.17,65,0.866,119,1.653,193,1.551,684,4.69,685,4.972,686,4.972]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[270,1.256,551,2.741,684,4.247,687,4.247,688,4.889,689,2.984,690,2.944,691,3.574,692,4.889]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[17,1.219,33,1.408,34,1.422,58,2.004,63,2.129,65,0.969,119,1.849,180,3.982,203,3.49,262,2.784,295,2.784,357,2.641,402,4.018,486,2.864,684,5.247,685,7.802,693,4.416,694,4.514,695,4.078,696,5.012,697,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/",[5,0.675,65,0.769,91,0.863,138,3.504,193,1.377,269,0.662,288,2.748,293,2.554,300,3.828,698,2.109]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[136,3.74,156,4.84,299,4.623,573,5.131,578,4.84,699,5.131,700,4.45]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[26,0.078,33,1.257,34,1.269,38,3.291,40,3.438,51,0.311,136,5.244,138,7.366,139,3.765,288,5.268,292,4.474,293,2.873,295,2.485,299,6.483,302,4.306,303,3.942,578,6.788,698,3.438,701,4.166,702,6.788]],["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/",[17,1.345,55,2.669,95,2.016,295,3.07,539,4.065]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[55,2.595,703,6.478,704,6.478,705,5.627,706,6.478]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[5,0.931,26,0.056,33,1.54,34,1.555,55,3.612,65,1.06,94,2.565,95,2.728,120,2,187,3.309,228,3.18,269,0.912,317,5.482,348,3.487,707,6.608,708,6.608,709,6.608,710,4.716,711,6.608]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/web-servers/caddy/compile-caddy-from-source/",[198,3.984,357,3.449,712,6.096]],["keywords//docs/web-servers/caddy/compile-caddy-from-source/",[712,6.618,713,4.254]],["toc//docs/web-servers/caddy/compile-caddy-from-source/",[198,5.187,712,7.936]],["deprecated//docs/web-servers/caddy/compile-caddy-from-source/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[26,0.057,51,0.384,91,1.199,93,4.557,714,6.661]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[715,7.122,716,7.735,717,7.735]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[26,0.095,29,3.496,33,1.6,34,1.616,51,0.533,61,3.059,62,3.02,65,1.101,136,4.608,660,2.665,715,9.636,718,2.062,719,3.256]],["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/",[26,0.057,28,0.726,51,0.384,92,3.256,720,4.065]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[28,0.843,47,1.52,720,4.721]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[21,1.495,26,0.099,33,1.6,34,1.616,47,1.349,51,0.396,61,3.059,62,3.02,310,3.059,474,3.59,618,5.482,720,6.387,721,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/",[26,0.057,51,0.384,159,1.872,232,2.791,712,5.146]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[712,6.618,713,4.254]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[26,0.068,33,1.854,34,1.871,51,0.458,58,2.637,193,2.284,203,3.275,340,2.909,712,7.873,722,3.917,723,7.952]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[3,2.186,5,1.018,225,1.869,724,7.224]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[225,1.824,423,1.736,725,7.051,726,6.492]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[35,4.81,58,3.051,225,2.38,695,4.427,727,8.47,728,7.345]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[129,3.694,139,4.651,203,2.743,552,3.549,729,5.146]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[729,5.447,730,7.051,731,7.051,732,7.051]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[17,1.309,26,0.076,29,3.303,33,1.512,34,1.526,84,4.015,94,2.517,269,0.895,275,4.437,332,1.592,338,3.122,339,3.959,647,6.353,660,2.517,729,8.45,733,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/",[26,0.057,28,0.726,92,3.256,417,5.146,690,4.011]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[417,5.005,734,6.478,735,6.478,736,6.478,737,6.478]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[21,1.588,26,0.102,33,1.7,34,1.716,47,1.433,118,5.205,221,4.807,417,7.442,492,5.205,669,4.088,738,6.05]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[32,2.153,45,1.084,739,6.275,740,5.421]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[332,1.278,468,4.321,469,2.699,739,4.524,741,2.63,742,5.209,743,5.209,744,5.209]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[5,1.049,26,0.083,33,1.736,34,1.753,61,3.318,62,3.276,182,3.215,310,3.318,392,2.59,469,3.859,739,8.483,740,5.588,745,6.178]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.87,5,0.871,6,2.62,120,1.87,300,4.935,746,5.69]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[747,7.051,748,7.051,749,7.051,750,7.051]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.963,5,1.254,6,3.774,12,3.031,26,0.055,33,1.512,34,1.526,151,4.015,175,3.807,226,3.855,420,4.867,446,2.989,746,8.196,751,5.972,752,4.276,753,5.972,754,4.015,755,5.381,756,5.634]],["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/",[21,1.175,22,1.316,26,0.046,28,0.589,92,2.639,120,1.634,757,4.052,758,4.48]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[21,1.304,22,1.461,758,4.971,759,5.517,760,5.204,761,4.629]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[21,2.073,26,0.088,33,1.339,34,1.352,51,0.549,95,1.738,192,3.22,201,4.99,203,2.366,273,2.577,439,3.459,757,8.226,758,6.784,762,5.745,763,4.1,764,5.745,765,3.787]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[26,0.057,199,2.585,766,5.786,767,6.661,768,6.661]],["keywords//docs/applications/project-management/install-farmos/",[689,4.721,766,6.719,769,3.424]],["toc//docs/applications/project-management/install-farmos/",[21,1.386,26,0.054,33,1.485,34,1.499,51,0.367,61,2.838,62,2.802,149,2.225,180,4.198,203,2.623,262,2.935,270,1.637,361,4.357,402,3.02,669,3.57,695,3.065,766,9.427,770,6.369,771,3.189,772,4.198]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[17,1.345,162,2.894,383,5.786,480,3.734,710,4.754]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[480,4.801,773,8.566]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[17,1.536,162,4.302,169,4.522,383,6.608,454,6.312,455,4.778,480,6.537,486,3.607,774,7.005,775,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/",[17,1.345,65,1.068,776,2.38,777,2.824,778,5.319]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[779,6.478,780,6.478,781,6.478,782,6.478,783,6.478]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[26,0.086,28,0.707,33,1.512,34,1.526,51,0.374,62,2.853,65,1.04,151,4.015,203,2.671,333,4.741,402,3.076,420,4.867,498,4.015,695,3.122,777,2.75,778,5.179,784,3.597,785,6.486,786,2.442,787,5.972]],["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/",[26,0.061,28,0.787,92,3.531,788,6.275]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[690,4.658,788,6.719,789,5.4]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.046,5,0.626,20,2.517,26,0.084,32,1.323,33,1.035,34,1.045,45,0.666,51,0.39,61,1.979,62,1.953,65,0.712,94,1.723,142,1.609,192,2.489,247,2.71,269,0.934,272,1.648,305,2.261,310,3.014,333,3.246,335,2.98,340,1.624,361,3.037,566,3.1,642,2.789,697,1.664,777,1.883,786,1.672,788,9.02,790,4.089,791,4.44,792,4.44,793,3.246]],["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/",[5,0.812,226,3.426,332,1.414,348,3.042,393,3.735,794,4.602,795,4.453]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[665,2.906,794,5.173,796,5.965,797,6.478,798,6.478]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[26,0.066,31,4.682,33,1.813,34,1.83,51,0.448,99,6.209,348,4.104,698,3.421,794,8.885,799,2.25,800,3.801]],["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/",[26,0.043,48,3.348,49,2.166,65,0.814,119,1.555,269,0.701,471,4.055,472,4.214,801,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[176,5.85,697,2.642,802,7.051,803,7.051]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[17,1.359,26,0.057,33,1.57,34,1.585,48,4.439,49,2.872,51,0.526,95,2.038,120,2.038,269,0.93,392,2.342,471,7.292,472,7.576,786,2.536,804,6.735,805,4.11,806,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/",[129,4.376,175,4.632,617,6.096]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[617,6.618,620,6.84]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[3,2.418,17,1.123,26,0.068,33,1.297,34,1.309,84,3.443,120,1.683,129,5.187,275,3.806,278,2.993,312,4.175,529,3.118,543,4.442,617,7.898,618,8.646,807,9.353,808,5.564,809,3.971]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[26,0.049,28,0.628,92,2.817,392,2.005,697,2.16,810,5.006,811,5.307]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[55,2.595,190,5.965,810,5.627,811,5.965,812,3.328]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[17,1.286,22,1.553,26,0.075,32,1.898,33,1.485,34,1.499,45,0.956,51,0.367,61,2.838,62,2.802,63,2.245,247,3.887,310,2.838,487,3.609,697,2.386,810,9.892,813,5.864,814,4.357]],["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/",[26,0.043,28,0.554,65,0.814,91,0.914,231,2.543,815,4.677,816,4.677,817,4.677,818,3.474]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[225,1.55,817,5.517,819,5.992,820,4.183,821,5.992,822,5.992]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[5,0.726,26,0.044,33,1.202,34,1.213,51,0.297,56,2.088,65,1.76,129,2.859,177,3.399,231,4.484,252,5.843,392,2.63,592,3.238,752,4.985,815,8.247,816,8.247,820,3.6,823,3.769,824,4.277,825,4.478,826,3.983,827,5.156]],["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/",[26,0.061,28,0.787,65,1.158,828,6.652]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[28,0.769,829,7.051,830,7.051,831,7.051]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[15,6.167,26,0.077,33,1.54,34,1.555,61,2.944,62,2.907,310,2.944,828,6.085,832,9.016,833,9.016,834,9.016,835,9.016,836,9.016,837,6.608]],["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/",[26,0.053,28,0.674,51,0.356,92,3.021,191,3.262,341,2.719]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[838,7.051,839,7.051,840,4.428,841,6.124]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[5,0.837,17,1.199,26,0.051,51,0.342,56,2.405,119,1.818,182,2.564,191,3.134,203,3.448,233,3.366,234,5.377,262,2.737,341,2.613,428,6.715,474,3.106,579,5.159,580,4.927,841,5.159,842,5.939,843,5.159,844,5.939]],["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/",[17,1.247,28,0.674,55,2.476,192,3.464,390,1.701,845,5.69]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[55,3.099,705,6.719,846,7.735]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[12,3.088,17,1.82,26,0.056,33,1.54,34,1.555,55,4.111,126,3.309,152,5.105,192,6.179,390,2.481,705,5.74,847,4.83,848,4.83,849,6.608]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[850,0.477]],["title//docs/applications/containers/how-to-use-dockerfiles/",[5,1.224,851,6.354]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[162,3.36,164,4.121,851,5.654]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[17,1.722,54,3.755,162,3.705,198,4.307,480,4.781,851,8.491]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[21,1.345,26,0.053,28,0.674,51,0.356,92,3.021,852,4.935]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[21,1.684,853,7.122,854,7.735]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[16,2.959,21,2.477,22,1.742,26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,329,4.988,392,2.485,587,4.71,852,8.525]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[26,0.057,28,0.726,51,0.384,92,3.256,855,5.146]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[855,5.976,856,7.735,857,7.735]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[17,1.503,21,1.621,26,0.083,33,1.736,34,1.753,51,0.563,332,1.827,351,2.056,487,4.221,503,5.753,733,4.319,855,7.545]],["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/",[28,0.674,91,1.112,104,3.045,129,3.427,570,3.203,858,2.828]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[28,0.653,91,1.078,859,4.629,860,4.629,861,4.496,862,4.276]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[26,0.065,51,0.571,94,2.953,104,5.746,119,2.329,142,2.757,351,2.101,357,3.326,858,4.532]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[5,0.871,51,0.356,119,1.892,120,1.87,525,4.074,665,2.772]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[525,5.099,526,7.122,863,7.735]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[3,1.927,6,2.7,26,0.054,32,1.898,33,1.485,34,1.499,45,0.956,171,5.697,175,3.739,228,4.231,525,7.507,665,4.515,864,6.369,865,5.532,866,4.92]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[110,3.268,491,5.201,867,5.767]],["keywords//docs/security/getting-started-with-selinux/",[338,3.118,867,4.735,868,6.478,869,6.478,870,6.478]],["toc//docs/security/getting-started-with-selinux/",[26,0.068,33,1.854,34,1.871,61,3.543,62,3.498,257,4.994,867,8.669,871,7.952,872,7.952]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,1.309,63,2.348,119,2.039,162,2.894,164,3.549]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[162,3.063,164,3.757,851,5.154,873,7.051]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[6,3.531,63,2.936,162,4.559,164,6.121,197,5.814,218,5.589,592,5.231]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[26,0.057,51,0.384,392,2.317,393,4.317,874,5.786]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[874,5.204,875,5.992,876,5.992,877,4.496,878,5.992,879,5.992]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[5,1.146,26,0.069,61,3.625,62,3.579,129,4.512,319,4.776,874,10.388,880,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/",[26,0.053,63,2.178,162,2.685,164,3.292,464,5.127,480,3.464]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[162,3.063,164,3.757,851,5.154,881,7.051]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[26,0.061,33,1.665,34,1.681,47,1.404,84,4.422,110,2.959,162,4.638,340,2.613,464,5.927,480,5.326,538,5.52,661,4.487,882,7.145,883,6.579]],["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/",[26,0.061,28,0.787,845,6.652,884,6.652]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[885,7.735,886,7.735,887,7.735]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[26,0.056,33,1.54,34,1.555,61,2.944,62,2.907,118,4.716,120,2,203,2.722,246,8.234,300,5.276,401,3.979,884,9.449,888,5.74,889,6.608,890,5.105]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[850,0.477]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[26,0.067,28,0.86,867,5.767]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[4,2.014,867,4.735,891,5.965,892,6.478,893,5.374]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[26,0.074,33,2.038,34,2.057,61,3.895,62,3.845,401,5.264,867,6.39,891,8.049]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[162,3.776,175,5.102]],["keywords//docs/applications/containers/introduction-to-docker/",[162,3.36,164,4.121,851,5.654]],["toc//docs/applications/containers/introduction-to-docker/",[61,3.895,62,3.845,162,5.102,480,4.9,679,7.593,851,6.39]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[26,0.053,91,1.112,227,1.788,293,3.292,672,2.589,894,5.368]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[894,6.124,895,7.051,896,4.497,897,6.124]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[3,1.474,17,0.983,26,0.041,33,1.135,34,1.146,51,0.418,61,2.17,62,2.143,130,1.463,149,1.701,193,1.399,203,2.986,216,3.211,225,1.26,227,1.409,295,2.244,331,2.646,332,1.195,340,1.781,351,2.392,360,4.485,362,2.825,517,3.763,632,3.211,637,3.655,660,1.89,672,2.041,894,9.676,898,3.56,899,4.871]],["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/",[28,0.495,32,1.353,45,0.681,92,2.219,159,1.276,194,3.507,232,1.902,233,2.573,341,1.997,883,4.18,900,3.507]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[22,1.461,900,4.629,901,5.992,902,4.183,903,4.496,904,3.025]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[3,2.107,33,1.076,34,1.086,36,2.709,45,1.045,51,0.266,84,2.856,90,1.402,142,1.672,216,3.042,233,5.294,247,4.25,269,0.637,275,3.157,286,2.459,338,2.221,340,1.688,341,3.689,362,2.676,579,4.009,658,2.743,669,3.904,697,3.142,771,3.487,786,1.738,900,7.217,905,2.943,906,2.991,907,2.709]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[257,4.956,455,4.956,867,5.767]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[867,7.015]],["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/",[5,0.938,168,3.422,169,3.959,351,1.839,486,3.159]],["keywords//docs/quick-answers/linux/how-to-use-git/",[4,2.192,908,7.051,909,5.85,910,7.051]],["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/",[5,1.224,911,6.715]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[4,2.192,911,5.447,912,5.85,913,5.032]],["toc//docs/quick-answers/linux/how-to-use-wget/",[3,2.858,5,1.331,94,3.666,911,7.297,914,9.446]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[5,1.018,119,2.211,206,4.471,373,5.044]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[206,3.708,254,3.051,284,4.971,915,5.992,916,4.379,917,4.496]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[44,4.587,84,3.556,119,2.914,203,3.921,206,6.421,218,3.856,275,3.93,284,9.725,373,7.243,378,4.99,530,3.459,917,4.311,918,5.745]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[26,0.061,51,0.416,119,2.211,919,6.275]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[919,6.124,920,5.85,921,6.124,922,4.923]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[16,1.652,17,1.546,26,0.088,32,1.188,33,0.93,34,0.938,45,0.598,50,2.784,51,0.541,119,1.905,142,2.256,150,2.915,192,2.235,218,2.676,254,3.17,286,2.124,331,2.166,340,2.277,392,1.387,410,2.846,421,2.543,480,2.235,533,4.034,658,2.37,665,1.788,695,1.919,919,7.515,923,3.988,924,2.992,925,3.672,926,2.846,927,2.341,928,3.988,929,3.184,930,2.784,931,2.728]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[26,0.049,28,0.628,159,1.62,232,2.415,269,0.796,900,4.453,932,5.764]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[22,1.461,900,4.629,902,4.183,904,3.025,933,5.992,934,5.992]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[3,1.632,26,0.067,33,1.257,34,1.269,51,0.45,84,3.338,175,3.166,199,2.093,203,3.218,262,2.485,269,0.744,275,3.689,286,2.873,295,2.485,332,1.323,340,1.973,341,2.372,482,2.596,652,4.474,733,3.128,848,3.942,900,8.263,935,3.849,936,4.966,937,3.765,938,4.966]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[4,2.071,5,0.938,119,2.039,164,3.549,939,4.754]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[162,3.36,939,5.52,940,7.735]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[4,3.19,45,0.992,50,4.614,51,0.381,125,4.83,130,1.984,164,5.467,257,4.15,373,4.614,533,4.283,658,3.928,698,2.907,888,5.74,941,6.608,942,5.276,943,5.74,944,4.716]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[26,0.061,29,3.679,159,2.031,232,3.027]],["keywords//docs/development/java/install-java-on-centos/",[30,5.374,159,2.5,945,6.478,946,5.965]],["toc//docs/development/java/install-java-on-centos/",[26,0.084,27,5.43,29,5.939,33,1.773,34,1.79,192,4.265,276,4.466,947,7.005,948,6.075,949,7.005]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[26,0.061,29,3.679,91,1.3,293,3.849]],["keywords//docs/development/java/install-java-on-debian/",[30,5.85,91,1.269,292,5.85,946,6.492]],["toc//docs/development/java/install-java-on-debian/",[26,0.084,27,5.43,29,5.939,33,1.773,34,1.79,192,4.265,276,4.466,947,7.005,948,6.075,949,7.005]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[26,0.061,28,0.787,29,3.679,92,3.531]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[27,4.623,28,0.706,29,3.299,30,5.374,950,4.01]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[26,0.071,27,5.944,29,4.241,33,1.941,34,1.96,45,1.25,192,4.668,292,6.909,847,6.087,950,5.155]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[26,0.057,28,0.726,47,1.309,92,3.256,951,5.786]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[47,1.177,265,4.971,903,4.496,916,4.379,951,5.204,952,5.992]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[5,0.897,17,1.286,21,1.386,26,0.086,28,0.694,47,1.727,51,0.58,110,2.638,130,1.913,142,2.308,325,3.786,333,4.655,786,2.398,951,8.743,953,6.369,954,6.369]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[63,2.781,119,2.415,480,4.423]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[19,4.204,119,2.415,340,2.886]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[4,2.246,164,3.849,698,3.178,939,5.156]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[939,5.032,956,7.051,957,4.648,958,5.63]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[336,5.231,665,3.735,698,4.616,926,5.944,937,5.814,939,7.49,959,5.814,960,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/",[119,2.211,961,4.471,962,3.849,963,3.262]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[4,2.405,480,4.336,955,5.654]],["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/",[119,2.415,254,4.018,917,5.921]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[4,2.405,480,4.336,955,5.654]],["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,2.016,4,2.071,5,0.938,286,3.549,964,4.998]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[376,4.732,393,4.57,964,5.291,965,5.63]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,2.645,5,1.231,216,5.763,351,2.414,964,8.116,966,7.593,967,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/",[26,0.053,65,0.991,159,1.737,232,2.589,916,4.517,968,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[969,7.122,970,7.122,971,7.735]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,182,3.085,203,2.943,388,4.988,421,4.557,439,4.302,669,4.005,916,5.222,968,8.858,972,5.705,973,6.579]],["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/",[26,0.053,28,0.674,65,0.991,92,3.021,916,4.517,968,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[969,7.122,970,7.122,974,7.735]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[26,0.061,33,1.665,34,1.681,51,0.412,65,1.146,182,3.085,203,2.943,388,4.988,421,4.557,439,4.302,669,4.005,916,5.222,968,8.858,972,5.705,973,6.579]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[26,0.061,159,2.031,232,3.027,975,4.848]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[159,1.821,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[17,1.359,22,1.642,26,0.078,33,1.57,34,1.585,51,0.388,61,3.001,62,2.962,94,2.614,149,2.353,270,1.73,388,4.702,392,2.342,416,4.11,669,3.775,975,7.457]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[4,2.246,6,3.063,7,4.24,755,5.993]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[376,3.74,393,3.612,492,3.977,755,4.623,756,4.84,965,4.45,977,5.573]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[4,1.945,6,3.681,54,2.205,376,5.827,619,4.368,656,4.694,661,3.929,824,5.19,978,5.76,979,5.76,980,6.256,981,5.19,982,4.694,983,6.256,984,6.256,985,6.256,986,5.19,987,6.256,988,5.19,989,5.76,990,5.434,991,6.256]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[5,1.112,6,3.345,913,5.631]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[4,2.192,912,5.85,913,5.032,992,4.497]],["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/",[5,1.112,6,3.345,993,6.3]],["keywords//docs/quick-answers/linux/how-to-use-head/",[3,1.96,4,2.014,912,5.374,993,5.173,994,6.478]],["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/",[5,1.112,6,3.345,995,6.3]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[3,1.96,4,2.014,912,5.374,995,5.173,996,6.478]],["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/",[5,0.812,83,3.426,119,1.764,652,4.781,660,2.237,997,5.006,998,4.024]],["keywords//docs/security/advanced-ssh-server-security/",[4,1.619,28,0.568,65,0.835,159,1.464,332,1.278,665,2.336,796,4.796,999,4.796]],["toc//docs/security/advanced-ssh-server-security/",[5,1.191,16,1.937,33,1.09,34,1.101,35,2.445,129,2.593,130,1.404,149,2.953,242,3.138,262,3.896,339,2.854,486,2.217,530,2.816,566,3.265,580,3.88,660,1.815,665,2.097,771,2.341,957,3.083,963,2.111,1000,4.676,1001,3.338,1002,3.338,1003,4.306,1004,5.835,1005,4.062,1006,4.676,1007,4.306,1008,4.306,1009,3.338,1010,4.306,1011,4.062,1012,4.306,1013,4.676,1014,4.676,1015,4.676]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,1016,5.146,1017,6.661]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[28,0.568,690,3.136,903,3.908,1016,4.024,1018,4.796,1019,4.796,1020,4.796,1021,5.209]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[3,1.419,17,1.582,22,1.143,26,0.076,33,0.655,34,0.661,46,2.025,51,0.488,55,1.126,58,1.556,61,1.252,62,1.236,65,0.968,90,2.73,130,1.408,142,1.018,149,2.463,169,1.67,171,1.821,192,3.384,194,3.623,199,1.09,221,1.852,310,2.69,338,2.257,340,1.028,351,1.295,416,2.862,455,2.946,637,3.519,649,1.962,698,2.063,738,2.331,1016,8.01,1022,2.587,1023,2.587,1024,2.44,1025,2.587,1026,3.745,1027,1.443]],["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/",[159,1.518,225,1.397,232,2.263,1028,5.717,1029,4.972,1030,7.202]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[159,1.684,269,0.827,1028,4.379,1029,5.517,1031,5.992,1032,5.992]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[5,0.986,21,1.524,26,0.06,33,1.632,34,1.648,51,0.403,130,2.103,142,3.397,199,2.718,269,0.967,1028,6.853,1030,10.395,1033,5.41]],["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/",[5,0.761,104,2.66,131,2.56,132,4.052,159,1.518,927,3.17,1034,2.276,1035,4.972]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1036,6.176,1037,7.735,1038,7.735]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[26,0.083,51,0.559,104,4.782,927,5.698]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1039,3.82]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[26,0.061,119,2.211,129,4.006,131,3.425]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[920,5.85,921,6.124,922,4.923,1040,6.492]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[26,0.07,51,0.471,94,2.23,119,3.175,120,1.738,129,3.186,130,1.725,131,2.724,142,2.963,254,2.925,364,4.1,480,3.22,653,5.29,655,5.29,660,2.23,922,4.011,926,4.1,927,4.8,962,3.061,1041,5.745,1042,5.745,1043,3.93]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1044,3.827,1045,6.853,1046,5.767]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1045,6.124,1046,5.154,1047,5.85,1048,5.291]],["toc//docs/platform/upgrade-to-hourly-billing/",[550,8.67,1044,4.841,1049,3.777]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[119,2.661,917,6.522]],["keywords//docs/platform/disk-images/resizing-a-linode/",[917,6.428,1044,4.154]],["toc//docs/platform/disk-images/resizing-a-linode/",[119,3.144,917,7.708]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,293,3.549,1050,5.786]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[28,0.843,1050,6.719,1051,7.735]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[26,0.063,33,1.736,34,1.753,51,0.429,149,2.602,228,3.584,348,3.93,351,2.056,501,6.178,660,2.89,800,3.64,1050,10.047]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[26,0.061,159,2.031,232,3.027,719,3.425]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[22,1.461,28,0.653,719,2.841,904,3.025,1052,4.099,1053,5.517]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[17,1.263,22,1.525,26,0.053,33,1.458,34,1.472,40,2.752,51,0.36,110,2.591,120,1.893,149,3.033,203,2.576,204,2.863,295,2.883,319,3.672,328,5.76,403,4.465,592,3.929,719,5.365,1054,4.995]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[17,1.163,28,0.628,65,0.924,92,2.817,1055,5.307,1056,5.307,1057,5.764]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[28,0.843,65,1.24,1058,7.735]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[17,1.199,26,0.051,33,1.384,34,1.398,45,0.891,51,0.342,57,4.239,65,1.847,87,3.576,182,2.564,187,2.974,351,1.64,530,3.576,673,5.468,823,4.341,1055,9.695,1059,5.845,1060,5.939]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[26,0.061,159,2.031,232,3.027,1061,4.848]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[159,1.982,1061,4.732,1062,6.492,1063,7.051]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[12,2.129,16,1.887,17,0.919,21,0.992,22,1.111,26,0.079,33,1.062,34,1.072,37,2.642,45,1.035,51,0.574,61,2.03,62,2.004,65,0.73,94,1.768,142,1.651,149,2.409,163,3.519,232,1.909,269,0.629,270,1.171,286,2.427,332,1.118,416,4.209,552,2.427,584,3.003,639,2.708,697,1.707,905,2.905,1061,6.69,1064,4.194]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[26,0.061,28,0.787,92,3.531,1061,4.848]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[28,0.769,1061,4.732,1062,6.492,1065,7.051]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[12,2.215,16,1.963,17,0.957,21,1.032,22,1.155,26,0.06,33,1.105,34,1.115,37,2.749,45,1.066,51,0.584,61,2.112,62,2.085,65,0.76,94,1.839,142,1.717,149,2.482,163,3.661,269,0.654,270,1.218,286,2.525,332,1.163,416,4.336,552,2.525,584,3.124,639,2.817,697,1.776,905,3.023,1061,6.806,1064,4.364]],["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/",[5,0.675,28,0.523,51,0.276,59,2.78,91,0.863,224,2.78,772,3.16,777,2.033,1066,1.805,1067,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[28,0.706,91,1.166,1066,2.439,1067,5.374,1068,4.735]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[3,1.657,22,1.335,26,0.047,33,1.277,34,1.289,51,0.316,65,0.878,90,1.664,203,2.256,224,3.176,332,1.939,340,2.003,660,2.126,771,2.742,776,1.957,800,2.677,963,4.186,1066,4.222,1067,4.544,1069,4.373,1070,5.043,1071,4.544,1072,5.477,1073,5.477]],["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/",[22,1.507,26,0.053,46,2.668,159,1.737,232,2.589,1074,3.357]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[46,3.044,902,4.923,1075,5.63,1076,4.303]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[17,1.35,22,2.336,26,0.057,33,0.758,34,0.765,38,1.984,46,3.327,51,0.187,130,0.976,149,1.136,159,0.914,182,1.404,203,2.178,218,4.488,228,1.565,237,3.428,278,1.749,295,2.437,332,1.891,348,1.716,393,2.107,401,1.958,446,3.081,530,4.027,564,2.993,660,2.99,671,2.993,722,1.602,1077,5.21,1078,5.289,1079,5.289,1080,2.439,1081,6.315,1082,2.224,1083,3.251]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[17,1.458,45,1.084,719,3.425,1084,7.224]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[341,3.102,719,3.343,904,3.56,1085,7.051]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[3,2.533,17,1.199,32,1.77,33,1.384,34,1.398,45,0.891,51,0.559,61,2.646,62,2.613,90,1.804,110,2.46,149,2.075,203,2.446,225,1.536,262,2.737,348,3.134,672,2.488,719,3.97,733,3.444,771,2.974,1086,4.693,1087,4.927]],["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/",[5,0.607,47,0.847,91,0.776,293,2.297,337,2,551,2.416,570,3.426,697,1.615,959,3.01,1088,3.331,1089,3.151]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[47,1.177,551,3.358,697,2.245,840,3.763,1088,4.629,1090,5.204]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[3,1.632,17,1.089,26,0.078,33,1.257,34,1.269,47,1.536,51,0.616,61,2.403,62,2.372,90,1.638,129,2.991,137,3.056,270,1.386,286,2.873,337,2.503,446,2.485,551,3.023,669,3.023,1088,7.785,1091,4.684,1092,4.047,1093,5.393,1094,5.393]],["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/",[119,2.661,1095,6.354]],["keywords//docs/platform/disk-images/clone-your-linode/",[955,5.654,1095,7.317]],["toc//docs/platform/disk-images/clone-your-linode/",[119,3.144,1095,7.509]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[26,0.061,159,2.031,232,3.027,269,0.997]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[159,2.174,269,1.068,902,5.4]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[26,0.077,33,1.22,34,1.231,51,0.572,61,2.332,62,2.302,193,1.503,203,2.155,225,1.354,235,2.428,269,1.055,332,1.876,335,3.512,390,1.44,531,4.875,552,2.788,566,3.653,695,2.518,697,2.864,1096,4.178,1097,7.039,1098,5.588,1099,4.178,1100,4.818]],["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/",[5,0.675,159,1.348,226,2.85,232,2.009,241,3.107,242,3.218,348,2.53,665,2.15,795,3.704,963,2.165]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[665,3.469,1101,7.122,1102,7.735]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[26,0.06,33,1.632,34,1.648,45,1.051,51,0.403,61,3.12,62,3.08,95,2.119,226,4.162,262,4.32,348,4.948,771,3.506,795,5.41,1103,7.003,1104,6.448,1105,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/",[5,0.607,28,0.47,91,0.776,92,2.107,226,2.562,241,2.794,242,2.893,293,2.297,348,2.275,665,1.934,795,3.331,963,1.946]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[28,0.706,91,1.166,665,2.906,1101,5.965,1106,6.478]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[26,0.06,33,1.632,34,1.648,45,1.051,51,0.403,61,3.12,62,3.08,226,4.162,262,4.32,348,5.578,771,3.506,772,4.616,795,5.41,1104,6.448,1105,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/",[51,0.356,65,0.991,335,4.148,660,2.398,741,3.12,1107,3.542]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[469,3.654,672,2.954,741,3.56,1107,4.042]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[1,5.331,32,2.174,33,1.7,34,1.716,45,1.095,65,1.169,90,2.215,340,2.667,421,4.651,644,4.281,660,2.83,741,3.682,800,3.564,1107,4.18,1108,4.391,1109,5.472]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[4,1.921,5,0.871,247,3.772,251,4.935,254,3.147,641,4.517]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[91,1.269,251,5.63,893,5.85,1110,7.051]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[5,0.897,17,1.286,26,0.075,33,1.485,34,1.499,51,0.367,91,1.582,119,1.949,142,2.308,247,6.143,251,5.085,254,4.476,293,3.393,332,1.563,351,1.759,424,5.284,927,3.739,1111,4.779]],["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/",[40,3.29,119,1.555,267,3.144,269,0.701,315,2.847,1112,5.079,1113,4.412,1114,4.412]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[140,4.191,600,6.492,1114,6.124,1115,6.492]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[3,1.365,6,1.912,17,1.541,32,0.799,33,0.625,34,0.631,45,0.402,90,0.814,110,1.868,119,0.821,120,0.811,126,2.258,180,1.767,218,3.027,227,1.305,233,3.879,262,1.236,272,0.995,341,5.181,363,1.615,392,1.569,480,3.836,534,4.153,592,2.832,695,1.29,906,2.923,1111,3.384,1114,9.579,1115,8.844,1116,2.681,1117,2.224,1118,2.224,1119,2.681,1120,2.469,1121,4.51]],["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/",[26,0.061,28,0.787,92,3.531,551,4.049]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[553,6.124,554,6.124,556,6.124,1122,6.492]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[3,2.365,16,3.237,17,1.089,26,0.067,33,1.257,34,1.269,45,0.809,47,1.06,51,0.581,78,4.474,259,3.849,269,0.744,270,1.386,551,5.995,565,4.966,566,6.416,710,3.849,1122,8.462,1123,5.393]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[5,0.938,262,3.07,348,3.516,665,2.988,935,4.754]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[348,2.749,665,2.336,794,4.159,935,3.717,1124,5.209,1125,5.209,1126,4.796,1127,4.796]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[16,2.234,33,1.257,34,1.269,119,1.651,126,2.7,203,2.221,262,5.139,332,1.917,348,2.846,475,4.684,595,4.474,665,2.419,771,3.913,794,4.306,935,6.559,1043,3.689,1089,3.942,1105,3.495,1126,4.966,1128,5.393,1129,7.815,1130,4.684,1131,5.393]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[4,2.246,26,0.061,119,2.211,1132,6.275]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[129,3.323,920,4.971,1132,5.204,1133,5.992,1134,5.992,1135,5.992]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[4,2.377,26,0.077,33,1.22,34,1.231,51,0.572,61,2.332,62,2.302,65,0.839,94,2.031,95,1.583,104,2.578,119,1.602,125,3.825,142,1.896,254,2.664,257,3.286,332,1.284,351,1.445,480,2.933,533,3.391,654,3.512,658,3.11,930,3.653,1132,7.846,1136,3.825,1137,4.178,1138,5.233]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[26,0.067,159,2.218,1139,4.816]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1139,4.303,1140,7.051,1141,7.051,1142,7.051]],["toc//docs/websites/cms/install-cpanel-on-centos/",[5,1.321,26,0.06,51,0.54,58,2.323,104,3.45,119,2.143,120,2.119,499,3.743,718,2.816,805,4.274,1139,5.722,1143,6.448]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[228,4.184,660,3.373]],["keywords//docs/networking/remote-access/",[664,5.173,1144,6.478,1145,6.478,1146,6.478,1147,6.478]],["toc//docs/networking/remote-access/",[5,1.126,45,0.835,48,5.268,51,0.321,263,4.067,499,2.83,539,3.395,643,4.832,644,6.001,660,3.102,663,5.632,665,2.495,672,3.349,694,4.258,926,3.971,937,5.58,961,3.443,1105,3.606,1148,4.442]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[157,1.85,159,1.62,697,2.16,786,2.17,806,2.96,1149,4.024,1150,3.62]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[157,1.923,159,1.684,1150,3.763,1151,4.496,1152,4.784,1153,4.629]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[17,1.413,33,1.632,34,1.648,142,2.537,203,2.884,395,3.767,697,2.624,786,4.251,806,3.597,962,4.995,1154,6.546,1155,6.448,1156,6.448]],["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/",[28,0.589,91,0.972,570,2.798,697,2.023,786,2.033,806,2.774,1149,3.77,1150,3.391]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[28,0.653,91,1.078,1150,3.763,1151,4.496,1152,4.784,1153,4.629]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[17,1.413,33,1.632,34,1.648,142,2.537,203,2.884,395,3.767,697,2.624,786,4.251,806,3.597,962,4.995,1154,6.546,1155,6.448,1156,6.448]],["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/",[47,1.214,63,2.178,195,4.774,196,4.517,333,4.517,697,2.316]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[47,1.52,333,5.654,697,2.898]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[17,1.072,33,1.238,34,1.25,47,1.044,51,0.306,65,0.852,90,1.613,129,2.946,262,2.448,332,1.303,335,3.565,337,4.228,340,1.943,403,3.791,421,5.81,482,2.556,645,3.565,722,2.617,1001,3.791,1002,3.791,1157,4.104,1158,5.312,1159,5.312,1160,5.312,1161,5.312,1162,5.312,1163,5.312,1164,5.312,1165,5.312,1166,5.312]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[104,3.282,129,3.694,159,1.872,232,2.791,858,3.049]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[159,1.821,859,5.005,860,5.005,861,4.861,862,4.623]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[26,0.065,51,0.571,94,2.953,104,5.746,119,2.329,142,2.757,351,2.101,357,3.326,858,4.532]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[225,1.869,305,3.679,531,4.607,1098,5.28]],["keywords//docs/websites/host-a-website-with-high-availability/",[509,5.291,570,3.654,713,3.502,1148,5.63]],["toc//docs/websites/host-a-website-with-high-availability/",[16,1.615,21,0.849,22,0.951,26,0.064,33,0.909,34,0.918,51,0.568,65,0.625,90,2.293,120,1.18,203,3.108,233,2.21,269,0.844,332,0.957,335,2.617,338,3.633,339,4.606,341,1.715,364,2.783,498,2.413,499,1.381,539,2.38,551,2.186,566,2.722,644,2.289,654,2.617,1086,3.429,1097,7.87,1099,6.027,1100,5.632,1148,3.113,1167,3.899,1168,6.117,1169,2.617]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[175,4.632,531,5.032,1098,5.767]],["keywords//docs/websites/introduction-to-high-availability/",[225,1.824,305,3.59,509,5.291,1148,5.63]],["toc//docs/websites/introduction-to-high-availability/",[3,1.963,22,1.581,65,1.04,193,1.863,227,1.877,329,4.529,351,1.791,446,2.989,507,4.867,513,5.179,531,6.976,753,5.972,898,4.741,1098,7.995,1148,7.108]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[26,0.061,28,0.787,92,3.531,435,5.28]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[28,0.769,92,3.446,432,6.124,435,5.154]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[4,2.485,26,0.047,33,1.297,34,1.309,51,0.321,65,1.281,98,6.836,110,2.304,119,1.703,170,4.635,174,4.07,182,3.45,332,1.365,363,4.812,435,7.914,639,4.75,641,4.067,658,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/",[26,0.061,28,0.787,46,3.119,92,3.531]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[46,2.797,903,4.861,1075,5.173,1076,3.954,1170,4.348]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[17,1.888,22,1.948,26,0.068,28,0.606,33,1.297,34,1.309,46,4.867,51,0.321,92,2.719,149,1.944,228,2.678,237,3.606,278,2.993,332,1.961,415,3.806,660,3.102,1074,3.023,1077,3.189,1081,3.667,1171,4.175]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,719,3.159,1172,6.134]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[22,1.461,28,0.653,719,2.841,904,3.025,1052,4.099,1053,5.517]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[17,1.334,22,1.611,26,0.056,33,1.54,34,1.555,40,2.907,51,0.381,110,2.737,120,2,149,2.308,203,2.722,204,3.024,295,3.045,319,3.879,592,4.15,719,5.471,1054,5.276]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[5,0.761,28,0.589,65,0.866,92,2.639,193,1.551,1172,4.972,1173,3.295,1174,5.4]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[713,3.841,1173,4.721,1175,7.122]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[6,2.186,7,3.027,12,2.41,17,1.041,26,0.044,33,1.202,34,1.213,51,0.297,56,2.088,171,3.342,195,3.983,196,3.769,202,3.68,225,2.552,273,2.313,340,1.886,390,2.715,392,1.793,421,3.288,538,3.983,669,4.239,978,4.747,1173,4.616,1176,6.569,1177,4.478,1178,1.991,1179,5.156]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[28,0.674,91,1.112,130,1.856,293,3.292,332,1.516,689,3.772]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[130,1.673,269,0.769,270,1.432,689,3.401,690,3.356,1180,3.674,1181,5.131]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[3,2.162,17,1.442,19,3.806,33,1.665,34,1.681,94,2.773,107,5.927,130,2.146,204,3.27,257,4.487,332,1.753,351,1.973,552,5.062,593,6.206,656,5.361,1044,3.465]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[26,0.057,28,0.726,92,3.256,269,0.92,1182,3.734]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1183,7.051,1184,7.051,1185,7.051,1186,7.051]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[5,1.231,26,0.074,33,2.038,34,2.057,90,2.655,269,1.207,1182,6.063]],["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.579,21,1.106,26,0.043,28,0.554,47,0.998,92,2.482,270,1.305,288,2.911,1187,2.586]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[47,1.386,270,1.812,903,5.291,1187,3.59]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[16,2.591,21,1.362,22,1.525,26,0.074,33,1.458,34,1.472,47,1.959,51,0.36,63,2.205,65,1.392,90,1.9,193,1.797,225,1.618,270,1.607,288,3.586,390,1.721,800,4.243,1178,2.415,1187,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/",[26,0.057,28,0.726,92,3.256,288,3.818,769,2.949]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[903,4.861,1188,6.478,1189,6.478,1190,6.478,1191,6.478]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[5,0.837,16,2.46,17,1.199,21,2.111,22,1.448,26,0.083,33,1.384,34,1.398,51,0.482,90,1.804,225,1.536,269,1.156,270,1.526,288,3.404,390,1.634,696,4.927,769,2.629,800,4.092,1192,5.939,1193,5.939]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[28,0.787,92,3.531,1044,3.504,1194,3.559]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[28,0.843,92,3.781,1044,3.751]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[26,0.054,28,1.097,31,3.835,32,1.898,58,2.112,92,3.113,104,3.138,119,1.949,130,1.913,142,2.308,531,4.062,592,4,784,3.532,988,5.284,1027,3.271,1044,4.882,1194,4.331,1195,5.284]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[26,0.053,28,0.674,65,0.991,91,1.112,191,3.262,293,3.292]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[191,3.162,896,3.821,1196,5.992,1197,5.992,1198,5.992,1199,5.517]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[16,2.075,26,0.083,28,0.546,32,1.493,33,1.168,34,1.179,45,0.752,51,0.561,54,1.766,91,0.901,119,2.696,130,1.504,131,2.375,142,1.815,191,5.134,205,3.1,226,2.977,234,2.778,332,1.229,347,3.1,351,1.383,424,4.156,428,3.195,907,2.94,1086,4.15,1200,4.612]],["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/",[26,0.057,51,0.384,159,1.872,191,3.516,232,2.791]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[159,1.982,191,3.721,902,4.923,1199,6.492]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[5,0.706,16,2.075,26,0.075,32,1.493,33,1.168,34,1.179,45,0.752,51,0.507,54,1.766,119,2.696,131,2.375,142,1.815,191,5.478,204,2.292,205,3.1,234,2.778,263,3.661,332,1.229,347,3.1,348,2.644,351,1.383,424,4.156,428,3.195,907,2.94,963,2.262,1086,4.15,1200,4.612]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[26,0.053,28,0.674,91,1.112,293,3.292,1201,3.673,1202,5.127]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[28,0.653,227,1.734,896,3.821,1201,3.561,1203,5.992,1204,5.992]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[17,1.179,26,0.07,33,1.361,34,1.374,51,0.337,57,4.168,61,2.602,62,2.569,137,3.31,142,2.116,149,2.04,193,2.376,198,2.949,269,0.806,331,4.495,357,2.553,358,4.663,660,2.267,1082,3.995,1201,6.557,1202,4.845]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[5,0.715,28,0.554,47,0.998,51,0.293,199,1.971,474,2.656,784,2.817,1205,4.677,1206,2.706]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[47,1.177,1207,3.608,1208,5.992,1209,5.992,1210,5.992,1211,4.021]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[17,1.472,26,0.098,33,1.7,34,1.716,47,1.433,51,0.555,110,3.021,199,2.83,474,3.813,1205,8.869,1206,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/",[26,0.067,119,2.415,1212,6.853]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1212,7.44,1213,8.566]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[4,2.652,26,0.073,119,2.611,142,3.091,175,5.007,258,7.409,1212,10.09]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,0.812,26,0.049,28,0.628,492,4.113,551,3.231,784,3.196,1214,5.006]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[28,0.568,137,2.952,269,0.719,551,2.92,1215,5.209,1216,5.209,1217,5.209,1218,4.024]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[6,2.476,15,3.995,22,1.424,26,0.094,32,1.741,45,0.877,54,2.059,118,4.168,130,2.885,137,3.31,151,3.615,323,5.378,492,5.905,551,4.638,718,1.754,848,4.269,877,4.382,1214,7.186,1218,4.512]],["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/",[47,1.133,214,2.987,305,2.935,1089,4.213,1219,5.307,1220,5.307,1221,4.453]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[168,3.328,1221,5.005,1222,5.005,1223,6.478,1224,6.478]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[17,1.442,26,0.081,33,1.665,34,1.681,47,1.867,126,3.577,225,1.848,390,1.966,474,3.736,721,4.049,1219,6.579,1220,8.75,1221,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/",[26,0.057,28,0.726,91,1.199,1225,6.134,1226,6.134]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[820,4.523,823,4.735,1227,6.478,1228,5.965,1229,5.965]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[26,0.045,33,1.22,34,1.231,51,0.301,56,2.119,65,1.593,129,2.902,182,2.259,252,6.978,392,1.82,718,1.571,752,3.449,818,6.179,825,4.545,826,4.042,1225,9.148,1226,9.148,1228,4.818,1229,4.818,1230,4.818,1231,5.233,1232,5.233]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[17,1.247,26,0.053,247,3.772,697,2.316,786,2.327,1233,6.18]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[786,2.913,1234,7.735,1235,7.735]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[12,2.56,16,3.273,17,1.105,26,0.047,33,1.277,34,1.289,94,2.126,107,4.544,130,2.373,151,3.39,247,6.194,325,4.697,452,4.231,697,3.474,786,3.822,813,9.345,1236,7.902]],["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/",[28,0.554,65,0.814,312,3.811,420,3.811,784,2.817,1237,4.677,1238,4.677,1239,4.677,1240,4.677]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[28,0.475,1059,3.041,1211,2.923,1240,4.01,1241,4.355,1242,4.355,1243,4.355,1244,4.355,1245,4.355,1246,4.01,1247,3.365]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[26,0.05,33,1.361,34,1.374,45,0.877,51,0.337,65,1.541,110,2.419,257,3.668,312,6.208,683,4.845,718,1.754,957,3.85,1059,7.296,1157,4.512,1237,7.618,1238,7.618,1239,7.618,1248,4.512,1249,5.378]],["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/",[26,0.049,65,0.924,231,2.886,1202,4.781,1250,5.307,1251,5.307,1252,5.006]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[820,4.923,1247,5.447,1253,7.051,1254,7.051]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[5,0.967,26,0.058,33,1.6,34,1.616,51,0.396,65,1.484,119,2.102,142,2.488,231,4.633,820,4.794,986,5.696,1202,7.676,1250,8.52,1251,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/",[26,0.049,91,1.037,269,0.796,270,1.481,293,3.071,1255,4.781,1256,4.213]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[269,0.675,270,1.256,896,3.118,1090,4.247,1178,1.888,1257,4.889,1258,2.711,1259,4.502,1260,4.502]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[26,0.063,33,1.736,34,1.753,51,0.563,269,1.028,270,2.8,430,6.178,517,5.753,959,5.199,1255,8.102,1259,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/",[28,0.674,63,2.178,784,3.427,1261,5.69,1262,5.368,1263,4.774]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1261,4.796,1262,4.524,1263,4.024,1264,5.209,1265,4.796,1266,5.209,1267,4.524,1268,5.209]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[17,1.286,26,0.086,27,4.545,33,1.485,34,1.499,47,1.252,49,2.716,63,2.245,65,1.021,199,3.907,293,3.393,587,5.794,950,3.942,1262,5.532,1263,6.791,1265,5.864,1267,5.532]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[26,0.057,65,1.068,820,4.651,823,4.869,1059,4.651]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[820,3.891,823,4.073,1059,3.891,1246,5.131,1247,4.305,1269,5.131,1270,5.573]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[26,0.08,33,1.632,61,3.12,62,3.08,65,1.123,95,2.119,203,2.884,295,3.227,316,5.41,332,1.718,388,4.889,392,2.435,447,4.334,820,6.546,982,5.254,1059,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/",[51,0.356,91,1.112,293,3.292,1066,2.327,1271,4.774,1272,4.935]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[499,1.844,776,1.861,896,3.322,1066,1.961,1271,4.024,1272,4.159,1273,4.524,1274,4.796]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[16,2.649,26,0.035,32,2.842,45,1.431,51,0.368,90,1.254,150,3.017,196,3.017,203,2.634,262,1.902,326,3.189,348,2.179,402,3.032,498,2.555,499,2.264,806,2.12,826,3.189,907,2.423,1066,2.947,1111,3.097,1271,6.81,1272,5.106,1273,5.554,1274,3.801,1275,4.128,1276,4.128,1277,4.128,1278,4.128,1279,3.585,1280,4.128,1281,2.366,1282,3.017,1283,4.128]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[26,0.061,28,0.787,92,3.531,1284,6.275]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[28,0.769,776,2.52,1284,6.124,1285,6.492]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[4,1.416,12,2.129,17,1.392,21,1.501,22,1.111,26,0.079,33,1.062,34,1.072,51,0.262,94,1.768,95,1.378,130,1.368,142,1.651,149,1.591,151,2.819,225,1.784,269,1.149,270,1.171,288,3.953,340,1.666,390,1.898,401,2.743,404,3.18,538,3.519,697,1.707,769,3.053,907,2.674,1284,9.11,1286,4.555]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[26,0.067,119,2.415,939,5.631]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[129,3.593,922,4.523,926,4.623,939,4.623,1287,5.965]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[3,2.8,26,0.079,33,1.6,34,1.616,51,0.396,119,2.832,142,2.488,254,3.496,267,4.25,590,5.696,658,4.081,698,3.02,939,7.469,1054,5.482]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[850,0.477]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[26,0.046,65,0.866,140,3.21,193,1.551,216,3.559,420,4.052,570,2.798,1288,4.972]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[193,2.222,216,5.099,1289,7.735]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[5,1.173,21,1.813,26,0.071,32,2.482,33,1.941,34,1.96,45,1.25,51,0.48,1288,9.663]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[4,2.246,65,1.158,669,4.049,1290,6.275]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[823,5.154,1059,4.923,1290,6.124,1291,4.191]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[17,1.089,26,0.046,33,1.257,34,1.269,51,0.45,54,1.901,56,2.184,57,3.849,58,1.789,65,1.473,110,2.234,115,3.849,120,1.632,144,4.306,338,2.596,340,1.973,392,1.876,592,3.387,632,3.555,637,4.047,733,3.128,752,3.555,937,3.765,1096,4.306,1290,9.687]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[50,5.044,51,0.416,187,3.617,741,3.647]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[170,3.021,174,2.652,469,2.699,741,2.63,1292,4.524,1293,4.159,1294,4.796,1295,4.796]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[4,2.094,33,1.57,34,1.585,51,0.388,90,2.046,174,3.429,182,2.907,187,5.189,363,4.055,469,3.49,639,4.003,786,2.536,1009,4.806,1043,4.607,1293,5.377,1295,6.201,1296,4.806,1297,6.201]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[32,1.718,45,0.865,65,0.924,91,1.037,93,3.943,741,2.91,998,4.024]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[469,3.654,741,3.56,1292,6.124,1298,5.032]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[3,2.579,26,0.04,33,1.105,34,1.672,51,0.613,61,2.112,62,2.085,65,1.139,120,1.434,131,2.247,187,3.557,192,2.657,227,1.371,338,2.281,339,2.892,421,3.023,439,2.854,469,2.456,672,1.986,698,2.085,741,4.303,786,1.785,1092,3.556,1109,3.556,1279,4.117,1296,6.082,1299,4.364,1300,4.739]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[65,0.991,335,4.148,336,3.881,659,5.127,741,3.12,1107,3.542]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[469,3.654,741,3.56,1292,6.124,1298,5.032]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[33,1.988,34,2.007,51,0.491,61,3.801,62,3.752,339,5.206,672,3.574,741,4.307,1301,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[21,1.45,22,1.624,26,0.057,733,3.863,852,5.319]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[21,1.535,852,5.63,853,6.492,1302,7.051]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[17,0.997,21,2.103,22,1.786,26,0.042,33,1.151,34,1.162,40,3.842,45,0.741,51,0.285,65,0.792,149,1.725,182,2.132,203,4.25,392,1.718,446,2.276,475,6.364,570,2.559,624,4.829,852,5.85,1077,4.2,1080,3.706,1303,4.939,1304,4.939,1305,4.939,1306,4.548]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[28,0.726,63,2.348,784,3.694,1307,5.786,1308,5.786]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[140,3.561,227,2.437,1307,5.204,1308,5.204,1309,5.992]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[17,1.056,26,0.077,28,0.57,32,1.56,33,1.22,34,1.231,40,3.363,45,0.785,46,2.259,51,0.609,55,2.096,203,2.155,227,1.514,269,1.055,357,2.287,587,3.449,799,1.514,930,3.653,1307,9.179,1308,7.846,1310,5.233]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[159,2.218,232,3.306,769,3.493]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[21,1.213,159,1.566,269,0.769,270,1.432,769,2.467,902,3.891,1311,5.131]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[17,1.334,20,3.745,21,1.438,22,1.611,26,0.087,33,1.54,34,1.555,51,0.635,225,1.709,235,3.066,269,0.912,270,1.698,390,1.818,570,3.424,695,3.18,1312,6.608]],["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/",[5,0.761,28,0.589,47,1.061,63,1.903,199,2.096,784,2.994,1313,2.488,1314,2.798]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[47,1.386,55,2.825,1313,3.249,1314,3.654]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[26,0.062,32,2.174,33,1.7,34,1.716,45,1.095,47,1.893,51,0.555,55,2.921,199,2.83,587,4.807,930,5.092,1313,3.361,1314,4.992]],["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/",[26,0.061,51,0.416,293,3.849,689,4.409]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[269,0.827,270,1.54,689,3.657,690,3.608,1180,3.95,1181,5.517]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[33,1.773,34,1.79,51,0.438,84,4.709,94,2.953,110,3.151,142,2.757,269,1.05,275,5.204,293,4.053,689,6.044,809,5.43,1315,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/",[28,0.674,269,0.853,606,3.825,784,3.427,1316,5.69,1317,5.368]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[26,0.057,33,1.57,34,1.585,51,0.669,54,2.374,222,4.806,223,4.702,269,0.93,310,3.001,399,4.923,812,5.707,1313,3.103,1319,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[51,0.455,338,3.798,637,5.921]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[28,0.408,91,0.673,338,1.801,632,2.467,637,2.808,672,1.568,992,2.387,1320,3.742,1321,3.742,1322,3.742,1323,3.742,1324,3.742,1325,3.742,1326,1.957]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[3,1.632,4,1.677,5,0.76,26,0.046,28,0.588,33,1.257,34,1.269,45,0.809,51,0.311,83,3.206,91,0.971,115,3.849,120,1.632,203,2.221,286,2.873,338,3.761,339,6.528,340,1.973,401,3.247,478,3.555,570,2.795,637,7.561,698,2.372,1326,2.82,1327,5.393]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[5,0.871,17,1.247,273,2.772,288,3.542,757,4.637,769,2.736]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[36,3.271,273,2.499,757,4.182,761,4.305,1328,5.573,1329,5.573,1330,5.131]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,2.504,5,1.166,17,2.227,21,1.271,22,1.424,51,0.337,75,4.078,90,1.774,120,1.767,225,1.511,269,1.142,270,1.501,273,4.687,390,1.607,392,2.031,439,3.517,758,4.845,1331,5.378]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[26,0.061,51,0.416,91,1.3,1332,6.275]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[91,1.078,1059,4.183,1332,5.204,1333,5.992,1334,4.784,1335,5.992]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[26,0.081,33,1.665,34,1.681,45,1.072,51,0.412,65,1.524,149,2.496,182,4.102,187,3.577,936,6.579,1332,9.274,1336,7.145]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[119,2.211,487,4.094,660,2.804,1337,6.652]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[3,1.479,267,3.026,778,3.904,1337,4.502,1338,4.247,1339,4.889,1340,4.502,1341,4.889,1342,4.889]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[32,2.174,33,1.7,34,1.716,45,1.095,51,0.42,149,2.548,416,4.451,654,6.465,778,5.823,1137,5.823,1340,6.715,1343,7.293,1344,6.715,1345,7.293,1346,7.293]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[26,0.053,28,0.674,47,1.214,92,3.021,273,2.772,1347,5.127]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[28,0.843,47,1.52,1348,6.417]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[26,0.084,33,1.773,34,1.79,47,2.164,51,0.438,94,2.953,110,3.151,198,3.841,1027,3.908,1347,8.216]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[26,0.053,28,0.674,93,4.227,784,3.427,1016,4.774,1349,6.18]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[28,0.653,690,3.608,1016,4.629,1018,5.517,1019,5.517,1020,5.517]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[3,1.804,12,1.764,17,1.203,22,0.92,26,0.078,33,0.88,34,0.888,46,1.629,51,0.217,55,1.512,56,2.414,65,1.466,90,1.811,130,1.133,149,2.083,169,2.243,171,2.446,199,1.465,216,2.488,221,2.488,310,3.292,338,1.816,357,1.65,362,2.189,392,1.312,416,2.303,658,3.543,698,1.66,738,3.131,765,2.488,1016,7.86,1022,3.475,1023,3.475,1025,3.475,1026,3.013,1092,2.832,1350,3.774,1351,3.475,1352,3.774]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[28,0.674,32,1.842,45,0.928,47,1.214,784,3.427,1348,5.127]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[28,0.607,47,1.095,570,2.888,1211,3.74,1347,4.623,1348,6.638]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[26,0.055,45,0.973,47,1.997,51,0.374,94,3.455,95,1.963,110,2.687,198,3.275,272,2.407,273,3.992,351,1.791,423,1.597,446,2.989,669,3.636,1027,3.332,1347,7.385,1348,5.381]],["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/",[26,0.049,47,1.133,91,1.037,293,3.071,786,2.17,1256,4.213,1353,4.453]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[47,1.273,896,4.132,1151,4.861,1353,5.005,1354,6.478]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[3,1.538,26,0.076,32,1.514,33,1.185,34,1.196,47,1.47,51,0.293,90,1.543,204,2.326,262,2.342,272,1.886,357,2.221,395,4.025,402,2.409,539,3.101,569,4.216,634,4.216,695,2.446,771,2.544,786,3.689,806,4.562,858,2.326,907,2.983,1153,3.926,1353,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/",[26,0.061,65,1.158,227,2.09,1355,6.652]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1356,9.597]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[26,0.048,28,0.616,51,0.466,58,1.875,91,1.017,157,1.814,159,1.589,193,1.624,225,1.462,228,2.721,315,3.169,351,1.561,364,4.034,410,4.034,536,5.205,545,3.664,570,2.929,843,4.91,1027,2.904,1326,2.956,1355,9.482,1357,4.514,1358,5.653,1359,3.947,1360,5.653,1361,0.841]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[5,1.018,65,1.158,332,1.773,1362,4.762]],["keywords//docs/security/using-fail2ban-for-security/",[1362,5.099,1363,7.735,1364,7.122]],["toc//docs/security/using-fail2ban-for-security/",[5,0.748,26,0.045,28,0.579,45,0.797,51,0.576,91,0.956,157,1.705,159,1.493,187,2.66,232,2.226,242,3.565,320,3.501,644,3.118,776,1.898,1117,4.406,1359,3.708,1362,7.008,1364,4.891,1365,5.312,1366,5.312,1367,5.312,1368,5.312,1369,4.891,1370,7.729,1371,4.891,1372,4.614]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[28,0.628,63,2.032,65,0.924,231,2.886,784,3.196,1252,5.006,1373,5.307]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[28,0.607,820,3.891,823,4.073,1211,3.74,1247,4.305,1374,5.573,1375,5.573]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[26,0.06,33,1.632,34,1.648,51,0.403,65,1.503,110,2.9,231,5.292,718,2.103,986,5.809,1252,6.082,1373,9.733,1376,7.003,1377,7.003]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[26,0.053,46,2.668,47,1.214,91,1.112,93,4.227,1378,5.368]],["keywords//docs/development/version-control/install-gogs-on-debian/",[46,2.797,47,1.273,86,5.374,168,3.328,1378,5.627]],["toc//docs/development/version-control/install-gogs-on-debian/",[5,0.897,26,0.1,33,1.485,46,2.75,47,1.252,51,0.367,57,4.545,84,3.942,193,1.829,325,3.786,337,2.955,421,4.062,660,2.472,1092,4.779,1378,9.427]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[26,0.049,28,0.628,216,3.799,286,3.071,357,2.519,784,3.196,1379,3.799]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[28,0.39,1066,1.346,1211,2.399,1273,3.105,1379,2.356,1380,3.574,1381,2.245,1382,3.574,1383,3.574,1384,3.574,1385,3.574,1386,3.574,1387,3.574,1388,3.105,1389,3.574]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[17,1.613,26,0.08,32,1.658,45,1.199,51,0.321,58,1.845,65,0.892,94,2.159,119,1.703,120,1.683,149,1.944,312,4.175,395,2.993,487,5.301,697,2.085,786,3.522,806,2.858,1153,4.298,1331,5.123,1379,6.739]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[26,0.061,159,2.031,232,3.027,1390,5.28]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[159,1.161,902,2.883,1391,4.13,1392,4.13,1393,4.13,1394,3.587,1395,4.13,1396,4.13,1397,4.13,1398,4.13,1399,4.13,1400,4.13]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[16,2.136,26,0.093,33,1.202,34,1.213,51,0.436,61,2.297,62,2.268,104,2.54,110,2.136,159,1.449,198,3.818,310,2.297,338,2.482,340,1.886,357,2.254,482,2.482,632,3.399,658,3.065,1390,7.211,1401,5.156,1402,6.963,1403,4.277,1404,5.156,1405,5.156,1406,4.478]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[28,0.674,119,1.892,660,2.398,772,4.074,784,3.427,1137,4.935]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[28,0.653,701,4.629,772,3.95,937,4.183,1137,4.784,1407,5.992]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[26,0.065,180,5.015,654,5.106,660,3.844,772,6.528,799,2.201,800,3.719,1137,7.908,1279,6.608,1408,7.608,1409,5.204]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[159,2.218,175,4.632,1096,6.3]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[4,1.221,119,1.202,157,1.26,159,1.104,267,2.43,332,0.963,338,1.89,632,2.588,1096,3.135,1410,3.926,1411,3.926,1412,3.926,1413,3.926]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[26,0.051,45,0.891,51,0.559,58,1.97,83,3.53,120,1.797,331,3.227,338,2.858,339,3.625,362,3.444,446,2.737,566,4.146,632,3.915,1005,5.159,1096,7.742,1108,3.576,1414,3.915,1415,5.939,1416,5.939,1417,5.939,1418,5.468,1419,5.939,1420,4.588]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[26,0.053,51,0.356,65,0.991,234,3.427,525,4.074,866,4.774]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1421,7.735,1422,7.735,1423,7.735]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[26,0.076,33,1.512,34,1.526,51,0.586,63,2.286,95,1.963,203,2.671,234,3.597,295,2.989,525,7.805,809,4.629,866,5.011,1424,5.972,1425,6.486]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[29,3.392,159,1.872,232,2.791,276,3.91,1263,5.146]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[20,3.158,21,1.213,29,2.838,269,0.769,1263,4.305,1267,4.84,1426,5.573]],["toc//docs/development/java/java-development-wildfly-centos-7/",[5,0.784,21,1.211,26,0.08,29,2.833,33,1.297,34,1.309,48,3.667,49,2.373,51,0.46,65,0.892,203,2.291,269,1.103,293,2.964,337,3.709,567,5.123,612,4.442,950,3.443,1263,7.226,1282,4.067,1427,5.564,1428,5.564,1429,5.564,1430,5.564,1431,5.564]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[26,0.067,51,0.455,757,5.921]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[759,7.122,760,6.719,761,5.976]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[26,0.062,33,1.151,34,1.162,45,0.741,51,0.557,149,1.725,150,7.543,203,3.979,233,4.152,234,4.843,273,3.286,286,2.631,403,3.525,632,3.256,665,2.215,757,8.112,771,2.473,786,1.86,806,2.537]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[47,1.42,51,0.416,361,4.942,535,5.156]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[47,1.273,347,4.01,361,4.432,535,4.623,713,3.217]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[3,1.935,13,3.424,33,0.962,35,2.158,78,3.424,118,2.946,174,2.102,182,3.379,187,2.067,227,1.194,315,2.314,316,3.189,337,1.916,361,4.374,362,2.394,364,2.946,405,3.801,409,6.25,538,3.189,698,3.443,722,2.034,848,3.017,1011,3.585,1089,3.017,1432,3.585,1433,4.016,1434,4.128,1435,4.128,1436,2.454,1437,4.128,1438,4.128,1439,4.128,1440,4.128,1441,3.801,1442,3.801,1443,4.128,1444,3.424,1445,3.801,1446,4.128,1447,3.801,1448,3.801,1449,4.128,1450,4.128,1451,3.801]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[32,1.842,45,0.928,65,0.991,693,4.517,1452,5.368,1453,4.935]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[693,3.574,1291,2.906,1452,4.247,1453,3.904,1454,4.889,1455,4.889,1456,4.889,1457,4.889,1458,4.889]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[26,0.062,32,2.161,45,1.088,51,0.499,65,1.389,119,2.219,130,1.463,182,2.103,233,2.76,260,3.763,338,3.49,392,1.694,718,1.463,728,3.889,799,1.409,800,2.381,1027,2.502,1291,2.895,1452,8.911,1453,5.79,1459,4.871,1460,4.871,1461,6.015,1462,6.298]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[26,0.057,392,2.317,597,5.319,745,5.526,1463,6.134]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[745,4.321,1464,7.619,1465,5.209,1466,5.209,1467,5.209,1468,5.209,1469,5.209]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[3,1.454,5,0.677,17,0.97,26,0.061,28,0.524,51,0.495,54,1.693,62,2.113,65,0.77,149,1.678,171,4.651,193,1.38,211,4.173,235,2.229,246,3.429,288,2.754,302,3.836,351,1.982,392,2.496,669,2.693,718,1.443,745,8.462,809,3.429,1248,3.711,1463,7.911,1470,4.804,1471,4.804,1472,4.804,1473,4.173]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[51,0.455,697,2.956,1169,5.295]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[26,0.044,51,0.3,119,1.594,508,4.159,645,3.496,697,1.952,786,1.961,1169,3.496]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[26,0.06,33,1.632,34,1.648,47,1.376,51,0.54,65,1.503,193,2.693,262,3.227,269,0.967,539,4.274,697,2.624,755,5.809,786,2.637,800,3.423,1169,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[5,0.938,119,2.039,393,4.317,960,5.526,1474,5.319]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[393,4.57,937,4.923,960,5.85,1474,5.63]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[119,2.744,132,6.727,340,3.279,480,5.025,660,3.479,960,9.114]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[21,1.573,26,0.061,159,2.031,232,3.027]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1475,2.871,1476,3.478,1477,3.478,1478,3.613,1479,3.108]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[20,4.094,26,0.061,159,2.031,232,3.027]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1476,3.478,1479,3.108,1480,4.355,1481,4.355,1482,4.355]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[5,0.851,17,1.71,20,6.564,22,1.473,26,0.051,33,1.408,34,1.422,65,0.969,110,2.502,126,3.025,149,2.11,347,3.739,587,3.982,957,3.982,961,3.739,962,4.514,963,2.727,998,4.218,1077,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[227,2.09,351,1.995,698,3.178,1483,4.141]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[332,1.59,698,3.912,1483,3.713,1484,4.623]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[3,1.607,4,1.651,12,2.482,26,0.045,28,0.579,37,3.08,51,0.306,91,0.956,157,1.705,159,1.493,232,2.226,336,3.336,392,3.169,447,3.287,698,2.337,776,1.898,937,3.708,1326,2.777,1483,6.725,1485,5.312,1486,4.614,1487,9.111,1488,4.241]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[28,0.674,65,0.991,193,1.775,269,0.853,784,3.427,1194,3.045]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[28,0.653,269,0.827,337,2.78,713,2.976,1211,4.021,1489,5.992]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[16,2.546,26,0.084,33,1.433,34,1.446,51,0.494,56,3.473,183,4.612,225,1.59,269,1.364,273,4.794,315,3.445,390,1.691,482,2.958,1490,4.291,1491,5.339,1492,4.748]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[28,0.628,65,0.924,120,1.744,469,2.987,754,3.567,784,3.196,1493,5.006]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[28,0.706,469,3.357,1211,4.348,1493,5.627,1494,6.478]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[26,0.074,33,2.038,34,2.057,51,0.504,65,1.402,182,3.774,1493,9.395]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[26,0.061,65,1.158,119,2.211,1495,6.275]],["keywords//docs/game-servers/install-teamspeak/",[1247,5.447,1495,6.124,1496,7.051,1497,5.447]],["toc//docs/game-servers/install-teamspeak/",[2,5.254,26,0.06,33,1.632,34,1.648,51,0.403,94,2.718,110,2.9,325,4.162,338,3.37,392,2.435,491,4.616,629,4.998,1495,10.222,1498,7.003]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[48,4.391,51,0.384,119,2.039,499,2.359,1499,6.134]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[664,5.173,1500,6.478,1501,5.965,1502,5.627,1503,6.478]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[45,1.498,48,6.58,499,3.534]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[26,0.053,47,1.214,65,0.991,91,1.112,193,1.775,293,3.292]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[47,1.177,91,1.078,337,2.78,713,2.976,896,3.821,897,5.204]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[26,0.071,33,1.941,34,1.96,47,2.062,91,1.499,95,2.52,295,4.836,357,3.64]],["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/",[5,0.812,51,0.332,288,3.304,525,3.799,769,2.552,866,4.453,1504,4.602]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.732,21,1.213,269,0.769,270,1.432,525,3.674,896,3.554,1505,5.131]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[3,2.645,17,2.183,51,0.504,225,2.261,390,2.406,769,3.87,1504,6.98]],["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/",[5,0.715,17,1.025,288,2.911,525,4.93,769,2.249,866,3.924,1362,3.348,1504,4.055]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[21,1.064,269,0.675,270,1.256,525,3.223,896,3.118,1362,3.223,1505,4.502,1506,3.904,1507,4.889]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[3,2.406,17,2.057,51,0.458,204,3.639,234,4.41,525,6.717,558,6.349,866,6.143,1504,6.349,1508,7.952]],["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/",[65,0.991,91,1.112,193,1.775,269,0.853,293,3.292,1256,4.517]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[91,0.937,269,0.719,699,4.796,700,4.159,713,2.587,1509,5.209,1510,4.159,1511,5.209]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[16,2.502,26,0.083,33,1.408,34,1.422,51,0.488,56,3.432,183,4.533,225,1.563,269,1.464,273,4.758,315,3.386,390,1.662,482,2.907,1490,4.218,1491,5.247,1492,4.667]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[91,1.3,293,3.849,769,3.198,1256,5.28]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[21,0.899,91,0.743,269,0.57,270,1.061,305,2.103,769,1.828,896,2.634,1512,4.13,1513,4.13,1514,3.426,1515,3.803,1516,4.13]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[21,2.278,22,1.674,26,0.079,32,2.046,33,1.6,34,1.616,45,1.03,51,0.533,225,1.776,235,3.186,269,1.277,270,1.764,390,1.889,695,3.305]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[104,3.559,131,3.425,132,5.421,392,2.512]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[104,2.952,862,4.276,922,4.183,927,3.517,1517,5.517,1518,5.517]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[26,0.073,51,0.491,104,4.202,131,5.051,388,5.955,927,5.007,1519,6.811,1520,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/",[104,3.045,119,1.892,131,2.93,132,4.637,392,2.149,922,4.315]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[104,2.745,862,3.977,893,4.623,922,3.891,927,3.271,1517,5.131,1518,5.131]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[4,1.911,26,0.052,28,0.935,51,0.354,91,1.543,104,3.028,131,4.684,157,2.752,159,2.411,232,2.575,388,4.291,495,3.86,927,3.608,1326,4.485,1519,4.908,1520,5.66,1521,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/",[47,1.309,91,1.199,93,4.557,474,3.483,1206,3.549]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[47,1.095,91,1.003,474,2.914,1207,3.356,1522,3.891,1523,3.449,1524,5.131]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[16,2.591,21,1.362,26,0.092,33,1.458,34,1.472,47,1.706,61,2.787,62,2.752,63,2.205,110,2.591,224,3.628,310,2.787,340,2.288,474,3.271,482,4.179,721,4.92,1206,4.625]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[5,0.938,119,2.039,120,2.016,192,3.734,1525,5.786]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[36,2.704,119,1.41,120,1.394,180,3.037,269,0.636,276,2.704,474,2.409,687,4.002,1525,4.002,1526,4.242]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[3,2.078,26,0.079,32,2.046,45,1.03,51,0.533,65,1.101,119,2.102,137,3.891,269,0.948,529,3.849,658,4.081,718,2.062,778,5.482,1525,8.037,1526,6.322,1527,5.964]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[922,6.069,1528,7.211]],["keywords//docs/platform/kvm-reference/",[922,4.523,1529,6.478,1530,6.478,1531,6.478,1532,5.627]],["toc//docs/platform/kvm-reference/",[4,1.945,50,4.368,51,0.36,104,3.082,129,3.469,159,1.758,254,3.185,257,3.929,340,2.288,373,4.368,390,1.721,455,3.929,596,3.929,658,3.718,800,3.058,888,5.434,922,4.368,937,4.368,1034,2.637,1326,3.271,1420,4.833,1532,5.434,1533,6.256,1534,4.694]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[21,1.573,26,0.061,91,1.3,293,3.849]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.284,20,2.34,21,0.899,22,1.007,91,0.743,267,2.556,896,2.634,1475,2.722,1476,3.298,1477,3.298,1478,3.426,1479,2.947]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["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/",[26,0.049,28,0.628,47,1.133,51,0.332,92,2.817,270,1.481,1178,2.225]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[47,1.386,270,1.812,903,5.291,1178,2.723]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[26,0.057,33,1.57,34,1.585,47,1.795,51,0.388,90,2.046,95,2.038,148,5.849,225,1.742,270,2.663,272,2.499,315,3.775,332,1.652,390,1.853,624,4.439,1178,2.6,1535,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/",[28,0.726,47,1.309,270,1.712,784,3.694,1178,2.572]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[28,0.607,47,1.095,270,1.432,1178,2.152,1536,5.573,1537,3.271,1538,3.74]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.559,58,1.97,72,3.625,90,1.804,95,1.797,110,2.46,177,5.519,225,1.536,270,1.526,272,2.204,332,1.457,340,2.172,390,1.634,423,1.462,624,3.915,1178,2.293,1433,3.73,1535,3.73]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1171,5.921,1539,7.265,1540,5.631]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[36,2.87,761,3.777,1330,4.502,1540,3.49,1541,4.889,1542,4.502,1543,4.889,1544,3.777,1545,4.502]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[3,1.963,65,1.04,186,5.972,187,3.248,192,3.636,233,3.676,392,2.256,495,4.074,530,3.906,650,5.634,763,4.629,1118,5.381,1540,7.253,1544,5.011,1546,6.486,1547,5.634,1548,6.486,1549,6.486,1550,6.486,1551,5.972]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[17,1.458,809,5.156,1540,5.156,1544,5.581]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[36,3.058,761,4.024,769,2.306,1506,4.159,1540,3.717,1544,4.024,1545,4.796,1552,5.209]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[17,1.774,21,2.363,26,0.054,32,1.898,45,0.956,51,0.506,94,2.472,225,1.648,247,3.887,269,1.213,270,1.637,340,2.33,390,1.753,963,2.876,1544,4.92,1551,5.864,1553,6.369]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[26,0.053,28,0.674,65,0.991,784,3.427,1118,5.127,1540,4.411]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[760,4.247,761,3.777,1222,3.777,1540,3.49,1542,4.502,1554,4.889,1555,4.889,1556,4.889,1557,4.502]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[16,2.46,17,1.199,26,0.051,32,1.77,45,0.891,65,1.342,94,2.305,149,2.075,169,3.53,203,3.448,233,3.366,262,2.737,486,2.816,528,5.159,539,3.625,718,1.783,771,2.974,972,4.742,1118,6.946,1540,5.975,1544,4.588,1557,5.468,1558,5.939]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[4,1.792,26,0.049,65,0.924,332,1.414,660,2.237,741,2.91,905,3.676]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[28,0.607,91,1.003,157,1.788,159,1.566,469,2.888,672,2.335,741,2.814]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[4,1.98,26,0.075,45,0.956,51,0.367,65,1.021,120,1.927,149,2.225,170,3.694,174,3.243,187,4.401,363,3.835,533,4.128,660,2.472,741,5.75,799,1.843,1559,6.369,1560,6.369]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[119,2.211,1433,4.537,1561,5.156,1562,5.28]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[332,1.59,338,3.118,1563,6.478,1564,6.478,1565,5.627]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[5,1.27,35,3.455,286,3.52,446,3.045,566,4.614,698,2.907,979,6.085,1005,5.74,1433,6.445,1562,7.501,1566,6.085,1567,6.608,1568,6.608,1569,6.085,1570,6.608,1571,5.74]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[91,1.3,293,3.849,1044,3.504,1256,5.28]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[91,1.269,1044,3.42,1256,5.154,1572,4.246]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[26,0.057,31,4.055,32,2.007,58,2.234,91,1.212,104,3.318,110,2.789,119,2.061,130,2.022,142,2.44,293,3.588,380,4.806,531,4.295,592,4.23,752,4.439,800,3.292,1027,3.459,1044,4.429,1573,5.849]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[28,0.628,65,0.924,392,2.005,784,3.196,1291,3.426,1453,4.602,1574,5.764]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1291,5.091,1453,6.84]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[17,1.536,26,0.065,51,0.438,65,1.22,110,3.151,129,4.219,137,4.312,142,2.757,149,2.658,586,7.005,658,4.522,1291,4.522,1575,9.904]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[26,0.046,28,0.589,65,0.866,784,2.994,1059,3.77,1091,4.69,1576,5.4,1577,4.972]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[28,0.533,820,3.414,1059,3.414,1157,3.777,1211,3.281,1247,3.777,1269,4.502,1578,4.889,1579,4.889]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[26,0.057,33,1.57,34,1.585,51,0.388,65,1.464,110,2.789,348,3.554,718,2.022,986,5.587,1091,9.001,1157,5.203,1577,9.542,1580,6.735,1581,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/",[28,0.589,91,0.972,104,2.66,129,2.994,570,2.798,858,2.471,927,3.17,1582,3.854]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[28,0.568,91,0.937,859,4.024,860,4.024,861,3.908,862,3.717,1583,4.159,1584,4.159]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[850,0.477]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[5,0.938,139,4.651,551,3.734,729,5.146,1585,6.661]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[28,0.706,91,1.166,139,4.523,551,3.631,729,5.005]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[3,1.207,16,1.652,17,0.805,25,2.784,26,0.088,29,2.031,31,2.401,32,1.188,40,2.738,51,0.541,58,1.323,60,5.732,90,1.891,94,1.548,126,1.997,137,3.528,139,5.346,149,2.175,362,2.313,455,2.504,487,2.26,532,3.081,644,2.341,663,2.401,718,1.197,729,7.683,790,3.672,1082,2.728,1092,2.992,1586,3.988,1587,8.652]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[65,1.158,91,1.3,232,3.027,1588,6.275]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[91,1.392,1291,4.598,1588,6.719]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[26,0.091,65,1.708,137,4.834,182,3.683,392,2.967,718,2.562,1588,7.409]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[6,2.62,162,2.685,696,5.127,1528,5.127,1589,6.18,1590,6.18]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[6,2.989,162,3.063,1591,7.051,1592,7.051]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[162,3.618,164,5.591,397,1.204,446,3.838,480,6.441,686,7.668,775,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/",[20,3.502,159,1.737,232,2.589,776,2.208,1066,2.327,1593,3.262]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[776,2.315,902,4.523,1594,6.478,1595,6.478,1596,4.623]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[20,4.635,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["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/",[21,1.345,159,1.737,776,2.208,1034,2.605,1066,2.327,1593,3.262]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[776,2.315,1036,5.173,1596,4.623,1599,6.478,1600,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[21,1.78,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[63,2.178,65,0.991,162,2.685,193,1.775,221,4.074,824,5.127]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[28,0.568,91,0.937,162,2.263,164,2.775,221,3.434,233,2.952,713,2.587,1601,4.796]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[26,0.066,65,1.611,94,3.018,162,4.834,164,4.143,193,2.234,221,6.621,392,2.704,480,4.359]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[28,0.726,91,1.199,231,3.335,1602,5.146,1603,6.134]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[28,0.706,91,1.166,823,4.735,1604,6.478,1605,6.478]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[5,0.866,6,2.606,26,0.052,33,1.433,34,1.446,51,0.354,56,2.489,65,0.986,231,4.946,252,4.748,718,1.846,1092,4.612,1230,5.66,1249,7.897,1281,3.523,1602,7.631,1603,9.095,1606,5.66]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[5,0.938,21,1.45,361,4.557,535,4.754,1479,4.754]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[21,1.535,1479,5.032,1607,7.051,1608,6.492]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[21,2.187,347,4.813,361,5.319,930,5.429,966,6.754,1479,5.55,1609,7.776,1610,7.776,1611,7.776,1612,7.776,1613,7.776,1614,7.776]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[125,5.767,1056,7.265,1171,5.921]],["keywords//docs/uptime/reboot-survival-guide/",[125,5.154,1615,7.051,1616,7.051,1617,7.051]],["toc//docs/uptime/reboot-survival-guide/",[3,1.767,19,3.112,22,1.424,28,0.637,31,4.982,32,2.466,58,1.937,90,1.774,91,1.051,125,6.048,159,2.326,219,4.168,232,2.447,329,4.078,338,2.811,339,3.564,507,4.382,624,3.85,697,2.188,825,5.073,1034,2.462,1618,5.841,1619,5.841,1620,5.841]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[65,1.265,269,1.089,347,4.884]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[51,0.406,269,0.973,713,3.502,1608,6.492]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[183,5.152,269,0.948,273,4.15,315,3.849,409,5.482,843,5.964,930,4.794,1490,4.794,1491,5.964,1621,6.322,1622,6.866,1623,6.866,1624,6.866,1625,6.866,1626,6.866,1627,6.866,1628,6.866,1629,6.866]],["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/",[26,0.057,63,2.348,162,2.894,288,3.818,769,2.949]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[28,0.706,91,1.166,162,2.814,769,3.938]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[21,1.588,26,0.082,45,1.095,51,0.42,94,2.83,162,4.685,164,3.885,269,1.007,392,2.536,480,4.088,661,4.58,718,2.19,769,3.229]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[850,0.477]],["title//docs/uptime/monitoring/top-htop-iotop/",[5,0.938,65,1.068,227,1.927,535,4.754,558,5.319]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[227,1.874,558,5.173,1630,5.627,1631,5.965,1632,5.173]],["toc//docs/uptime/monitoring/top-htop-iotop/",[6,4.717,7,4.565,16,3.221,204,3.559,303,5.684,558,6.209,751,7.16,752,5.126,1566,7.16,1630,6.754,1631,7.16]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[65,1.068,90,2.023,193,1.913,329,4.651,1633,5.786]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1633,6.719,1634,7.735,1635,7.735]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[3,2.406,6,4.32,17,1.605,51,0.587,94,3.086,302,6.349,392,2.766,400,4.612,1633,8.851]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[20,3.266,28,0.628,32,1.718,45,0.865,91,1.037,341,2.535,1099,4.602]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[20,2.952,21,1.134,28,0.568,91,0.937,341,2.291,509,3.908,1099,4.159,1636,4.796]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[22,2.03,26,0.071,45,1.25,51,0.48,90,2.53,95,2.52,272,3.09,338,4.008,1086,4.668,1099,6.65]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[110,3.268,491,5.201,1169,5.295]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[508,7.475,509,4.182,1169,5.37,1636,5.131]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[51,0.438,204,3.482,225,1.968,390,2.094,593,6.608,652,6.312,694,4.053,898,5.561,1169,7.39,1637,5.561,1638,4.709,1639,7.608]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[26,0.057,168,3.422,295,3.07,909,5.526,1095,4.869]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[168,3.077,909,4.971,1640,5.204,1641,4.784,1642,4.784,1643,4.971]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[17,1.752,26,0.053,51,0.36,90,2.637,168,3.213,295,2.883,395,3.365,464,5.19,487,3.545,774,5.76,909,7.203,1095,6.346,1547,8.661,1644,8.682,1645,6.256,1646,6.256,1647,6.256]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[26,0.057,51,0.384,91,1.199,232,2.791,572,5.526]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[97,7.887,1648,8.566]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[3,2.733,12,3.573,26,0.045,45,0.785,51,0.44,94,2.031,126,3.828,129,2.902,227,1.514,242,3.512,339,3.194,373,3.653,415,6.796,545,3.391,572,8.767,622,4.818,718,1.571,776,1.87,848,3.825,907,3.072,1359,3.653,1445,4.818,1649,4.818]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[26,0.061,91,1.3,1291,4.294,1650,6.275]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[91,0.88,896,3.118,897,4.247,1256,3.574,1291,2.906,1572,2.944,1650,4.247,1651,4.247,1652,3.414]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[26,0.085,33,1.813,34,1.83,51,0.448,65,1.247,110,3.221,120,2.353,338,3.743,718,2.335,799,2.25,1291,4.622,1650,6.754]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[26,0.067,91,1.42,1653,6.096]],["keywords//docs/game-servers/multicraft-on-debian/",[91,1.392,1291,4.598,1653,5.976]],["toc//docs/game-servers/multicraft-on-debian/",[26,0.092,51,0.504,486,4.145,718,2.625,754,5.411,1291,5.196,1653,6.754]],["deprecated//docs/game-servers/multicraft-on-debian/",[850,0.477]],["title//docs/game-servers/multicraft-on-ubuntu/",[26,0.067,28,0.86,1653,6.096]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[28,0.843,1291,4.598,1653,5.976]],["toc//docs/game-servers/multicraft-on-ubuntu/",[26,0.092,51,0.504,486,4.145,718,2.625,754,5.411,1291,5.196,1653,6.754]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[26,0.041,28,0.523,65,0.769,91,0.863,119,1.467,336,3.011,916,3.504,1113,4.164,1654,4.164,1655,4.415]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1654,6.719,1655,7.122,1656,7.735]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[5,1.263,26,0.076,51,0.516,142,3.248,351,2.475,1654,9.542]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[140,4.69,305,4.018,772,5.201]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[67,3.851,140,5.286,368,4.199,1657,5.965]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[32,2.425,140,4.836,203,4.258,270,2.09,336,6.494,772,5.363,806,4.179,1601,7.491,1658,5.363]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[140,4.69,551,4.423,772,5.201]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[67,3.561,140,5.007,368,3.883,551,3.358,1657,5.517]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[32,1.969,44,5.276,137,3.745,140,6.858,203,3.713,336,5.662,772,7.605,806,3.394,1214,5.74,1218,5.105,1659,6.608]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[103,5.421,417,5.581,1044,3.504,1660,6.652]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[28,0.533,91,0.88,116,3.574,157,1.569,159,1.374,332,1.2,417,3.777,877,3.669,1044,2.371]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[26,0.078,28,0.995,90,2.046,91,1.644,133,5.849,157,2.161,159,2.567,169,4.003,232,2.822,1027,3.459,1034,2.838,1044,3.266,1282,4.923,1660,6.201,1661,6.735,1662,6.735]],["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/",[28,0.674,32,1.842,45,0.928,65,0.991,91,1.112,1291,3.673]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[28,0.843,91,1.392,1291,4.598]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[26,0.074,65,1.402,182,3.774,392,3.04,718,2.625,1291,6.982]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[28,0.86,769,3.493,784,4.376]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[21,1.134,269,0.719,270,1.338,1211,3.496,1663,4.796,1664,5.209,1665,5.209,1666,4.024]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[17,1.503,21,2.126,22,1.815,26,0.083,33,1.736,34,1.753,51,0.628,225,1.926,269,1.028,270,1.914,390,2.049]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[159,2.031,232,3.027,1492,5.581,1667,7.224]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[159,2.174,902,5.4,1668,7.735]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[3,1.828,5,0.851,26,0.051,33,1.408,34,1.422,51,0.348,56,3.432,65,1.569,125,4.416,130,1.814,325,3.591,590,5.012,718,1.814,1092,6.358,1492,7.56,1669,9.786,1670,6.041,1671,6.041]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[15,5.397,51,0.455,499,2.794]],["keywords//docs/networking/dns/common-dns-configurations/",[1502,6.719,1672,7.122,1673,7.122]],["toc//docs/networking/dns/common-dns-configurations/",[5,1.208,32,1.832,45,0.922,51,0.354,58,2.039,65,1.375,214,4.444,225,1.59,241,3.984,245,4.291,402,4.684,498,3.804,499,2.176,500,4.612,776,2.196,777,2.606,1571,5.339,1674,5.66,1675,4.908,1676,4.908]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[26,0.061,47,1.42,91,1.3,221,4.762]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[91,0.88,305,2.49,1677,3.904,1678,4.247,1679,4.889,1680,4.889,1681,4.247,1682,4.889,1683,4.889]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[3,2.915,12,3.408,17,1.944,26,0.082,47,1.433,51,0.42,65,1.169,143,6.334,193,2.095,221,4.807,320,4.807,382,6.715,1684,7.293]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[4,1.921,26,0.053,330,4.935,672,2.589,1685,5.368,1686,5.368]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[330,5.63,672,2.954,929,5.63,1685,6.124]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[4,2.016,5,0.914,16,2.687,26,0.055,28,0.707,65,1.427,90,1.97,91,1.167,187,4.457,1282,6.507,1326,3.392,1433,4.074,1521,4.015,1685,7.732,1687,6.486,1688,5.381,1689,5.972,1690,6.486]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[225,1.869,531,4.607,551,4.049,1098,5.28]],["keywords//docs/websites/cms/high-availability-wordpress/",[21,1.41,509,4.861,551,3.631,1086,3.631,1691,5.965]],["toc//docs/websites/cms/high-availability-wordpress/",[17,1.16,22,1.401,26,0.07,32,1.712,45,0.862,51,0.632,95,1.738,149,2.007,234,4.535,269,0.793,272,2.132,286,3.061,551,3.22,718,1.725,799,1.662,1086,5.337,1169,3.856,1527,4.99,1692,4.311,1693,4.99,1694,5.745]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[21,1.345,22,1.507,51,0.356,234,4.774,1086,3.464]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[509,5.291,1086,3.952,1691,6.492,1695,7.051]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[17,1.503,21,2.126,22,1.815,26,0.063,51,0.563,149,2.602,234,5.416,286,3.967,1086,6.108,1692,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[26,0.074,221,5.73]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[305,3.59,1677,5.63,1678,6.124,1696,6.492]],["toc//docs/development/nodejs/how-to-install-nodejs/",[26,0.06,95,2.837,120,3.198,169,4.162,198,3.536,233,5.314,357,3.061,562,6.082,629,4.998,696,5.809,738,5.809,1697,6.448,1698,7.003,1699,7.003]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[26,0.053,159,1.737,232,2.589,288,3.542,1178,2.386,1187,3.147]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[4,1.732,47,1.095,159,1.566,270,1.432,1178,2.152,1187,2.838,1700,2.623]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[20,3.609,26,0.075,45,0.956,47,2.133,51,0.58,57,4.545,58,2.112,63,2.245,110,2.638,225,1.648,270,2.259,390,1.753,423,1.568,1178,3.394,1701,4.779]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[672,3.642,942,6.941]],["keywords//docs/platform/network-helper/",[570,2.888,644,3.271,664,4.45,672,3.353,1702,5.573,1703,5.573]],["toc//docs/platform/network-helper/",[3,1.86,28,0.67,45,0.922,51,0.354,91,1.106,133,5.339,157,1.973,159,1.728,312,4.612,392,2.138,415,4.205,533,3.984,672,3.593,942,6.848,1282,6.269,1326,3.214,1424,5.66,1448,5.66,1521,3.804,1688,5.099,1704,5.339,1705,6.147]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[19,2.877,91,0.972,232,2.263,273,2.422,570,2.798,689,3.295,1218,4.172,1706,4.312]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[91,0.937,551,2.92,689,3.179,690,3.136,691,3.807,1180,3.434,1706,4.159,1707,4.796]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[19,5.062,26,0.081,36,4.194,61,3.184,62,3.143,119,2.187,273,3.204,552,3.806,689,4.36,718,2.146,1218,5.52,1706,9.087]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[5,0.812,26,0.049,91,1.037,232,2.415,570,2.987,689,3.518,1706,4.602]],["keywords//docs/websites/cms/drush-drupal/",[91,0.937,551,2.92,570,2.699,689,3.179,690,3.136,691,3.807,1180,3.434,1707,4.796]],["toc//docs/websites/cms/drush-drupal/",[3,1.657,5,0.772,16,2.269,17,1.105,26,0.079,45,0.822,65,1.267,149,2.761,166,4.003,168,2.813,204,2.506,305,2.789,332,1.344,416,4.823,552,2.918,689,3.343,718,1.645,848,4.003,1026,6.31,1282,4.003,1490,3.824,1706,8.104,1708,5.477]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[159,1.872,232,2.791,269,0.92,697,2.496,786,2.508]],["keywords//docs/security/ssl/ssl-apache2-centos/",[157,1.672,269,0.719,697,1.952,1709,3.563,1710,4.796,1711,4.524,1712,5.209,1713,3.434]],["toc//docs/security/ssl/ssl-apache2-centos/",[5,1.202,33,1.988,34,2.007,51,0.614,90,2.591,269,1.178,697,3.196,786,3.212]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[28,0.674,91,1.112,269,0.853,570,3.203,697,2.316,786,2.327]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[28,0.568,91,0.937,269,0.719,697,1.952,713,2.587,1709,3.563,1714,4.796,1715,4.796]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[5,1.202,33,1.988,34,2.007,51,0.614,90,2.591,269,1.178,697,3.196,786,3.212]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[28,0.787,784,4.006,1044,3.504,1194,3.559]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[28,0.843,1044,3.751,1211,5.191]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[26,0.057,28,0.995,31,4.055,32,2.007,58,2.234,104,3.318,119,2.061,130,2.022,142,2.44,531,4.295,592,4.23,988,5.587,1027,3.459,1044,5.026,1194,3.318,1195,5.587,1716,2.907]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[850,0.477]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[26,0.049,47,1.133,91,1.037,232,2.415,786,2.17,1353,4.453,1572,3.47]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[47,0.905,1151,3.457,1153,3.559,1353,3.559,1572,2.774,1652,3.216,1681,4.002,1717,4.607,1718,4.242,1719,3.822]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[3,1.516,26,0.063,32,1.493,47,1.455,90,1.522,91,0.901,95,1.516,119,1.533,203,2.063,204,2.292,262,2.308,272,1.859,295,2.308,357,2.19,395,3.983,402,2.375,539,3.057,569,4.156,634,4.156,695,2.411,718,1.504,771,2.508,786,3.663,806,4.523,907,2.94,1153,3.87,1353,7.516]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1039,3.82]],["title//docs/websites/cms/cms-overview/",[120,2.186,351,1.995,722,3.559,898,5.28]],["keywords//docs/websites/cms/cms-overview/",[551,3.124,570,2.888,689,3.401,690,3.356,691,4.073,1180,3.674,1720,5.131]],["toc//docs/websites/cms/cms-overview/",[61,3.39,62,3.347,119,2.329,120,2.302,351,2.101,551,5.551,650,6.608,689,6.044,691,7.239,722,3.748,1218,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[421,5.032,1721,6.853,1722,7.265]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[28,0.568,91,0.937,116,3.807,157,1.672,159,1.464,332,1.278,1721,4.524,1722,4.796]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[47,1.404,90,2.17,269,1.312,421,6.06,506,5.52,741,3.607,1066,2.69,1068,5.222,1593,3.771,1721,9.274,1723,7.145,1724,6.579,1725,7.145]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[3,2.388,1043,5.397,1726,6.096]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1726,4.629,1727,4.784,1728,5.517,1729,4.496,1730,5.517,1731,5.517]],["toc//docs/tools-reference/file-transfer/filezilla/",[5,1.331,26,0.08,718,2.837,1726,8.76]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[26,0.049,28,0.628,92,2.817,273,2.585,486,2.733,754,3.567,1732,5.006]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[486,3.343,754,4.364,1732,6.124,1733,7.051]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[3,1.767,26,0.082,33,1.361,34,1.374,51,0.337,120,1.767,260,4.512,273,4.309,423,1.438,486,2.769,665,2.62,698,2.569,754,3.615,1027,3,1282,4.269,1675,4.663,1676,4.663,1732,9.95,1734,4.845]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[26,0.049,28,0.628,65,0.924,216,3.799,357,2.519,777,2.444,1735,5.006]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[776,2.764,777,3.279,1735,6.719]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[26,0.046,65,0.865,90,1.638,149,1.884,151,4.837,203,2.221,269,0.744,348,2.846,388,3.765,392,1.876,404,3.765,498,3.338,718,1.619,777,2.286,786,2.942,957,3.555,982,4.047,1271,7.1,1272,7.338,1499,8.462,1735,4.684,1736,4.474,1737,5.393,1738,5.393,1739,5.393]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[103,5.421,877,5.421,1044,3.504,1740,6.652]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[28,0.533,91,0.88,116,3.574,157,1.569,159,1.374,332,1.2,877,3.669,1044,2.371,1740,4.502]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[4,1.557,26,0.043,28,0.546,91,0.901,103,3.759,157,1.608,159,1.408,877,7.789,1027,2.573,1044,2.429,1326,2.619,1521,3.1,1688,4.156,1704,4.351,1741,10.381,1742,10.381,1743,5.009,1744,5.009,1745,5.009,1746,5.009,1747,5.009,1748,5.009,1749,5.009,1750,5.009,1751,5.009,1752,5.009]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[119,2.661,480,4.872]],["keywords//docs/platform/linode-images/",[480,4.801,1753,8.566]],["toc//docs/platform/linode-images/",[63,3.16,120,2.713,480,6.658,1488,7.158,1754,8.965]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[21,1.345,47,1.214,91,1.112,232,2.589,1572,3.721,1755,5.368]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[21,1.535,47,1.386,1652,4.923,1755,6.124]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[5,1.027,21,1.588,26,0.082,47,1.893,51,0.42,63,2.571,95,2.207,142,2.642,272,2.706,446,3.361,718,2.19,1755,9.368]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[26,0.053,28,0.674,784,3.427,1221,4.774,1316,5.69,1317,5.368]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[21,1.134,46,2.249,47,1.024,168,2.675,474,2.724,1207,3.136,1221,4.024,1222,4.024]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[22,1.448,26,0.083,32,1.77,45,0.891,46,2.564,47,1.167,63,2.093,95,1.797,142,2.152,216,3.915,225,1.536,272,2.204,310,2.646,332,1.457,351,2.312,390,1.634,440,4.742,474,3.106,669,3.329,1221,8.576]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[5,0.938,659,5.526,1071,5.526,1497,5.146,1756,5.786]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1497,5.005,1756,5.627,1757,4.523,1758,5.627,1759,5.627]],["toc//docs/applications/messaging/using-weechat-for-irc/",[4,1.161,5,0.833,6,1.583,26,0.05,28,0.407,33,0.87,34,0.879,45,0.887,51,0.215,59,2.165,65,0.599,91,0.672,137,2.116,157,1.198,159,1.049,170,3.428,172,3.438,173,3.438,174,1.901,182,1.612,363,3.559,392,1.299,455,2.345,478,3.897,529,2.093,539,2.279,570,1.935,639,3.514,660,1.449,683,3.098,694,1.989,695,1.797,728,2.981,752,2.461,1069,2.981,1281,2.14,1326,1.952,1756,8.801,1757,2.607,1760,2.554,1761,3.438,1762,3.734,1763,5.443,1764,3.734,1765,5.443,1766,3.734,1767,3.734]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[26,0.061,91,1.3,357,3.158,1768,6.275]],["keywords//docs/applications/messaging/install-znc-debian/",[1768,5.627,1769,6.478,1770,6.478,1771,6.478,1772,6.478]],["toc//docs/applications/messaging/install-znc-debian/",[16,3.085,26,0.063,33,1.736,34,1.753,51,0.429,182,3.215,187,3.729,247,4.545,697,2.79,786,2.804,806,3.825,1768,8.483,1773,7.447,1774,7.447]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[5,1.018,224,4.19,772,4.762,776,2.581]],["keywords//docs/email/using-google-apps-for-email/",[1775,7.735,1776,7.735,1777,7.735]],["toc//docs/email/using-google-apps-for-email/",[17,1.857,402,4.362,498,5.693,907,5.4,1026,7.345,1736,7.631]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[4,2.246,51,0.416,644,4.24,1436,4.294]],["keywords//docs/networking/linux-static-ip-configuration/",[663,4.658,664,6.176,1436,4.598]],["toc//docs/networking/linux-static-ip-configuration/",[4,1.846,28,0.913,51,0.342,90,1.804,91,1.069,157,1.906,159,2.353,164,3.164,182,2.564,232,2.488,397,0.859,421,3.788,455,3.73,663,3.576,672,2.488,771,2.974,939,4.239,942,4.742,1034,2.503,1326,3.106,1372,5.159,1436,3.53,1521,3.676,1688,4.927,1778,5.939]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[28,0.628,58,1.912,63,2.032,1334,4.602,1390,4.213,1716,2.488,1779,4.453]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[269,0.636,270,1.184,927,2.704,1334,3.679,1390,3.367,1394,4.002,1506,3.679,1779,3.559,1780,3.037,1781,4.607]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[2,3.463,17,1.693,26,0.09,32,1.375,45,0.693,51,0.578,94,1.791,95,1.396,104,2.274,130,1.386,149,1.612,259,3.294,272,1.712,273,2.07,286,2.459,288,2.645,351,1.274,533,2.991,543,3.685,718,1.386,769,2.043,772,3.042,800,2.256,907,2.709,927,2.709,1390,5.09,1779,6.479,1782,4.615,1783,4.249,1784,4.615]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[91,0.972,232,2.263,269,0.745,270,1.387,392,1.878,1255,4.48,1572,3.251,1785,4.48]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[269,0.894,270,1.665,1090,5.627,1178,2.501,1260,5.965]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[16,3.294,26,0.068,51,0.587,269,1.098,270,2.89,517,6.143,1255,8.454,1785,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[20,3.775,32,1.985,45,1,91,1.199,93,4.557]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[20,3.671,21,1.41,22,1.579,91,1.166,1524,5.965]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[5,0.967,20,6.826,26,0.058,51,0.396,65,1.101,149,2.399,182,2.964,228,3.305,332,1.685,347,4.25,961,4.25,962,3.658,963,3.1,1786,6.866]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[26,0.057,51,0.384,91,1.199,855,5.146,1787,6.661]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[21,1.535,91,1.269,855,5.447,1338,6.124]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[21,1.813,26,0.089,51,0.605,397,1.204,718,2.501,855,8.107,1361,1.239]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[5,0.761,51,0.311,59,3.132,65,0.866,777,2.289,1066,2.033,1068,3.947,1658,3.559]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[776,2.315,777,2.747,1066,2.439,1068,4.735,1652,4.523]],["toc//docs/email/postfix/postfix-smtp-debian7/",[3,1.683,22,1.356,26,0.047,35,2.909,45,1.199,51,0.539,65,0.892,90,1.69,130,1.671,224,3.227,332,1.365,495,3.494,718,1.671,772,3.667,963,3.608,1066,3.522,1067,4.615,1068,4.067,1069,4.442,1070,5.123,1071,4.615,1171,4.175,1788,4.298,1789,5.564,1790,5.564]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[26,0.067,51,0.455,1791,6.853]],["keywords//docs/applications/cloud-storage/dropbox/",[28,0.568,91,0.937,157,1.672,159,1.464,206,3.224,608,4.796,1338,4.524,1791,4.524]],["toc//docs/applications/cloud-storage/dropbox/",[26,0.08,51,0.544,90,2.869,693,6.904,1791,8.204]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[4,2.071,104,3.282,728,5.319,1792,5.786,1793,5.526]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[254,3.299,1534,4.861,1794,6.478,1795,6.478,1796,6.478]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[4,2.472,28,0.867,91,1.431,104,3.917,157,2.552,159,2.235,728,6.349,1326,4.158,1521,4.922,1535,4.994,1792,6.907,1793,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1039,3.82]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[65,1.158,157,2.318,769,3.198,1797,6.652]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[157,1.923,769,2.653,1798,5.992,1799,4.379,1800,4.496,1801,5.992]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[850,0.477]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[91,1.037,119,1.764,392,2.005,639,3.426,799,1.668,1108,3.47,1474,4.602]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[91,1.003,665,2.499,896,3.554,1802,4.623,1803,5.573,1804,5.131,1805,5.131]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[4,2.529,26,0.088,90,2.471,119,2.49,170,4.718,174,4.143,182,3.512,187,4.074,1802,8.578]],["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/",[28,0.589,119,1.653,392,1.878,639,3.21,799,1.562,1108,3.251,1474,4.312,1716,2.331]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[28,0.653,665,2.687,1780,3.95,1802,4.971,1804,5.517,1805,5.517]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[4,2.529,26,0.088,90,2.471,119,2.49,170,4.718,174,4.143,182,3.512,187,4.074,1802,8.578]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[850,0.477]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[5,0.871,28,0.674,98,4.517,435,4.517,1111,4.637,1716,2.668]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[28,0.769,432,6.124,435,5.154,1716,3.044]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[4,2.572,26,0.05,51,0.337,65,0.936,98,7.023,110,2.419,119,1.788,170,4.798,174,4.213,182,3.572,332,1.433,363,4.982,435,8.063,639,4.918,641,4.269,658,3.471]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[17,1.247,45,0.928,159,1.737,719,2.93,1086,3.464,1806,5.368]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[17,1.163,45,0.865,91,1.037,232,2.415,719,2.733,1086,3.231,1572,3.47]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[850,0.477]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[17,1.163,28,0.628,45,0.865,719,2.733,1086,3.231,1716,2.488,1811,2.96]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[22,1.579,341,2.85,719,3.072,904,3.271,1807,5.005]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[3,2.24,6,3.139,17,1.011,22,1.221,26,0.043,40,2.204,45,1.46,51,0.289,54,1.766,58,1.661,65,0.803,126,2.508,225,1.296,286,2.669,331,2.721,614,3.87,625,3.661,672,3.102,694,2.669,719,4.176,907,2.94,1086,4.936,1087,4.156,1535,3.146,1807,3.87,1808,4.351,1809,4.156,1810,4.351]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[103,5.421,116,5.28,1298,5.156,1812,6.652]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[28,0.568,91,0.937,116,3.807,157,1.672,159,1.464,332,1.278,1298,3.717,1812,4.796]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[26,0.068,28,0.867,62,3.498,91,1.431,116,5.812,157,2.552,159,2.235,169,4.726,204,3.639,332,1.951,786,2.994,1813,7.952]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[26,0.057,28,0.726,777,2.824,992,4.248,1716,2.876]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[21,1.003,28,0.502,503,3.559,776,1.646,777,1.953,1066,1.735,1388,4.002,1593,2.431,1716,1.989,1814,2.851]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[16,3.151,26,0.065,45,1.142,51,0.438,90,3.008,340,2.783,371,5.43,503,7.651,718,2.285,1388,6.608,1814,6.13]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[850,0.477]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[45,0.81,130,1.622,225,1.397,269,1.08,390,1.486,1315,4.972,1815,5.4]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[28,0.502,91,0.829,130,1.383,157,1.479,159,1.295,1044,2.234,1326,2.409,1515,4.242,1521,2.851,1816,4.607]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[19,3.218,28,0.658,45,1.272,51,0.348,91,1.087,130,2.544,131,2.864,225,2.192,259,4.311,269,0.834,273,2.709,316,4.667,372,4.054,390,2.332,416,3.687,478,3.982,629,4.311,694,3.218,890,4.667,1044,2.93,1809,5.012,1817,5.562]],["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/",[5,0.812,17,1.163,49,2.458,159,1.62,337,2.675,1806,5.006,1818,4.453]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[49,2.763,159,1.821,337,3.006,1806,5.627,1818,5.005]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[26,0.068,49,3.392,51,0.458,54,2.803,83,4.726,335,5.337,337,3.69,348,4.197,669,4.457,1818,7.873,1819,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[5,0.812,17,1.163,28,0.628,49,2.458,337,2.675,1716,2.488,1818,4.453]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[28,0.653,49,2.555,337,2.78,570,3.105,1716,2.587,1818,4.629]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[26,0.068,49,3.392,51,0.458,54,2.803,83,4.726,335,5.337,337,3.69,348,4.197,669,4.457,1818,7.873,1819,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[850,0.477]],["title//docs/platform/billing-and-payments/",[1046,6.354,1048,6.522]],["keywords//docs/platform/billing-and-payments/",[1046,6.261,1048,6.428]],["toc//docs/platform/billing-and-payments/",[19,2.366,38,2.71,58,2.243,114,3.332,119,2.507,130,1.333,184,3.684,204,2.032,225,1.149,267,2.748,397,0.978,401,2.674,422,2.412,446,2.046,487,2.517,507,3.332,629,3.169,660,1.723,1043,4.626,1045,3.857,1046,6.695,1048,5.075,1098,3.246,1130,3.857,1361,0.661,1734,3.684,1820,6.227,1821,4.44,1822,4.44,1823,3.43,1824,4.089,1825,4.44,1826,3.43,1827,3.857,1828,5.874,1829,3.684]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[91,1.199,93,4.557,265,5.526,654,4.471,1830,5.786]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1830,7.44,1831,8.566]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[3,2.119,16,3.883,35,3.662,51,0.403,65,1.503,83,4.162,187,4.695,351,1.934,669,5.255,672,2.934,718,2.103,1830,9.181]],["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/",[32,1.718,45,0.865,119,1.764,609,5.307,665,2.585,1107,3.304,1832,5.764]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[49,2.763,1107,5.098,1833,5.965,1834,6.478]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[4,2.417,32,2.318,45,1.167,65,1.247,170,4.51,174,3.96,363,4.682,420,5.835,440,6.209,639,4.622,718,2.335,1535,4.884,1833,7.16]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[95,2.63,515,6.941]],["keywords//docs/platform/package-mirrors/",[28,0.533,91,0.88,95,1.479,119,1.497,159,1.374,294,3.777,295,2.253,515,3.904,1835,4.502]],["toc//docs/platform/package-mirrors/",[28,0.867,45,1.78,91,1.431,95,2.406,159,2.235,351,3.105,515,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[47,1.214,91,1.112,232,2.589,474,3.232,1206,3.292,1572,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[16,2.959,21,1.555,26,0.091,45,1.072,47,1.867,95,2.162,110,2.959,272,2.651,340,2.613,423,1.759,482,4.573,721,5.385]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.579,20,2.878,26,0.043,47,0.998,91,0.914,270,1.305,288,2.911,293,2.706,1187,2.586]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[21,1.588,22,1.778,26,0.082,33,1.7,34,1.716,47,1.433,51,0.42,63,2.571,65,1.729,193,2.095,270,1.874,373,5.092,1178,2.816]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[65,1.068,91,1.199,232,2.791,1187,3.392,1572,4.011]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[21,1.495,22,1.674,26,0.089,45,1.03,47,1.818,51,0.396,63,2.42,65,1.484,193,1.972,225,1.776,270,1.764,390,1.889,423,1.69,718,2.062,1178,2.651]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[110,2.992,491,4.762,840,4.537,1088,5.581]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[28,0.706,91,1.166,570,3.357,840,4.069,1088,5.005]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[5,0.537,16,1.58,26,0.032,33,0.889,34,0.898,51,0.562,57,2.723,83,2.267,90,1.159,119,1.168,122,3.313,129,2.115,193,1.096,242,2.56,335,2.56,338,1.836,339,2.328,415,2.609,531,2.433,722,2.962,840,6.649,1088,8.416,1089,4.395,1098,2.788,1357,3.046,1637,4.395,1838,3.815,1839,4.988,1840,3.165,1841,3.815,1842,3.815,1843,3.815,1844,4.395,1845,3.313,1846,3.815]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[159,1.872,227,1.927,1034,2.808,1066,2.508,1847,5.786]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[227,2.04,1066,2.655,1381,4.428,1847,6.124]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[26,0.073,37,4.947,90,2.591,303,6.235,326,6.59,585,7.076,718,2.562,1847,7.409,1848,6.088]],["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/",[28,0.628,47,1.133,474,3.014,1194,2.839,1206,3.071,1716,2.488,1811,2.96]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[16,3.151,21,1.656,26,0.084,33,1.773,34,1.79,47,1.946,110,3.151,340,2.783,482,4.766,721,5.613]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[26,0.057,51,0.384,159,1.872,1034,2.808,1849,3.483]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[21,1.535,159,1.982,243,5.032,1849,3.687]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[26,0.088,33,1.896,34,1.915,51,0.469,90,2.471,334,5.68,697,3.048,1849,5.944]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[162,4.203]],["keywords//docs/applications/containers/what-is-docker/",[28,0.706,159,1.821,162,2.814,164,3.451,1716,2.797]],["toc//docs/applications/containers/what-is-docker/",[26,0.063,28,0.812,47,1.463,159,2.093,162,3.235,222,5.315,223,5.199,320,4.909,397,1.077,851,5.443,1034,3.139,1361,1.108,1716,3.215,1850,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[850,0.477]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[26,0.057,47,1.309,91,1.199,232,2.791,1572,4.011]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[47,1.024,91,0.937,337,2.417,713,2.587,1651,4.524,1652,3.637,1681,4.524,1851,5.209]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[17,1.219,26,0.083,45,0.907,47,2.085,56,2.447,91,1.087,94,2.344,120,1.828,130,1.814,131,2.864,227,1.748,295,2.784,332,1.482,357,2.641,423,1.487,718,1.814,799,1.748,858,3.878,1049,2.286,1852,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/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,1797,5.69]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1853,7.735,1854,5.976,1855,6.417]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[5,1.027,21,2.497,26,0.062,51,0.555,347,4.514,351,2.014,397,1.054,961,4.514,962,3.885,963,3.293,1361,1.085,1692,5.472]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[850,0.477]],["title//docs/platform/api/api-key/",[180,5.73,262,4.005]],["keywords//docs/platform/api/api-key/",[262,3.564,1856,7.735,1857,7.122]],["toc//docs/platform/api/api-key/",[401,6.186,771,5.144]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[119,2.661,492,6.204]],["keywords//docs/platform/linode-cli/",[1857,6.492,1858,7.051,1859,7.051,1860,7.051]],["toc//docs/platform/linode-cli/",[4,1.58,5,0.716,16,3.678,26,0.064,28,0.816,91,1.347,119,1.555,130,1.526,149,1.775,157,1.631,170,4.339,180,3.35,214,2.633,262,2.342,363,4.505,402,2.409,447,3.145,487,2.88,492,6.338,547,4.216,639,4.447,669,2.848,1169,3.41,1817,4.679,1861,5.082,1862,5.082,1863,5.082]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[21,1.573,26,0.061,159,2.031,1034,3.045]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.354,20,2.468,21,0.948,22,1.062,159,1.224,267,2.696,1475,2.871,1476,3.478,1477,3.478,1478,3.613,1479,3.108]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[5,0.851,17,1.71,21,2.521,22,1.473,26,0.051,33,1.408,34,1.422,65,0.969,110,2.502,126,3.025,149,2.11,347,3.739,587,3.982,957,3.982,961,3.739,962,4.514,963,2.727,998,4.218,1077,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[260,5.581,305,3.679,499,2.558,1864,6.652]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[305,3.939,499,2.739,1864,7.122]],["toc//docs/networking/dns/previewing-websites-without-dns/",[3,3.231,4,2.221,90,2.17,130,2.146,170,4.144,174,3.638,225,2.762,363,4.302,639,4.247,644,4.194,661,5.968,663,4.302]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[21,1.573,26,0.061,91,1.3,232,3.027]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.221,20,2.225,21,0.855,22,0.957,91,0.707,267,2.43,1475,2.588,1476,3.135,1477,3.135,1478,3.257,1479,2.802,1651,3.41,1652,2.741]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[26,0.053,28,0.674,91,1.112,92,3.021,293,3.292,1865,4.411]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[28,0.607,91,1.003,896,3.554,1865,3.977,1866,5.573,1867,4.84,1868,5.573]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[26,0.061,91,1.3,232,3.027,1865,5.156]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[91,1.269,1652,4.923,1865,5.032,1867,6.124]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[850,0.477]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[26,0.061,28,0.787,1716,3.119,1865,5.156]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[28,0.769,1716,3.044,1865,5.032,1867,6.124]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[26,0.073,51,0.614,193,2.45,225,2.207,331,4.634,390,2.347,806,4.381,1865,6.088]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[159,1.737,269,0.853,270,1.588,392,2.149,1034,2.605,1258,3.427]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[269,0.719,270,1.338,337,2.417,1258,2.889,1700,2.452,1869,3.563,1870,3.563,1871,4.524]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[26,0.073,33,1.988,34,2.007,51,0.491,269,1.471,270,2.737,1258,4.73]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[91,1.037,232,2.415,269,0.796,270,1.481,392,2.005,1258,3.196,1572,3.47]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[269,0.769,270,1.432,1258,3.09,1700,2.623,1869,3.812,1870,3.812,1871,4.84]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[26,0.068,33,1.854,34,1.871,51,0.458,269,1.407,270,2.618,340,2.909,1258,4.41,1872,5.967,1873,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[850,0.477]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[21,1.45,26,0.057,91,1.199,232,2.791,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[21,1.213,91,1.003,243,3.977,1849,2.914,1874,4.623,1875,4.623,1876,4.623]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[26,0.057,51,0.384,91,1.199,293,3.549,1849,3.483]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[21,1.003,91,0.829,243,3.288,270,1.184,896,2.938,1849,2.409,1874,3.822,1875,3.822,1876,3.822,1877,4.607]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[65,1.158,157,2.318,769,3.198,1878,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1799,5.154,1800,5.291,1879,7.051,1880,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[65,1.068,159,1.872,193,1.913,269,0.92,1034,2.808]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[159,1.684,269,0.827,1036,4.784,1713,3.95,1881,3.883,1882,5.517]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[26,0.091,33,1.665,34,1.681,51,0.412,56,3.848,225,1.848,269,1.571,273,3.204,390,1.966,482,3.439,1492,5.52]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[21,1.718,224,4.576,931,5.397]],["keywords//docs/platform/longview/longview-app-for-mysql/",[21,1.684,67,4.598,931,5.291]],["toc//docs/platform/longview/longview-app-for-mysql/",[21,1.769,22,1.633,26,0.037,28,0.478,38,2.676,51,0.468,67,2.606,91,0.789,115,3.13,131,2.079,182,3.929,254,2.233,315,2.458,325,3.982,397,0.634,422,2.382,447,2.714,800,2.143,840,2.754,1054,3.501,1080,6.099,1293,3.501,1296,3.13,1444,3.638,1461,7.549,1883,4.038,1884,3.809,1885,4.385,1886,4.385,1887,3.501,1888,3.638,1889,4.038,1890,4.385,1891,3.638]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[47,1.551,224,4.576,931,5.397]],["keywords//docs/platform/longview/longview-app-for-nginx/",[47,1.386,67,4.191,931,4.823,1892,7.051]],["toc//docs/platform/longview/longview-app-for-nginx/",[26,0.045,28,0.57,38,3.194,47,1.775,51,0.44,65,0.839,67,3.11,91,0.942,115,5.456,131,2.481,182,2.259,254,2.664,315,2.933,325,3.11,395,2.815,409,4.178,422,2.843,447,3.239,647,5.456,660,2.031,800,2.558,1293,4.178,1444,4.341,1461,4.341,1887,4.178,1888,4.341,1891,4.341,1893,4.545,1894,4.545,1895,4.341]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[224,4.576,269,1.089,931,5.397]],["keywords//docs/platform/longview/longview-app-for-apache/",[67,4.191,269,0.973,931,4.823,1896,7.051]],["toc//docs/platform/longview/longview-app-for-apache/",[26,0.04,28,0.51,38,2.854,51,0.405,65,0.75,67,2.78,91,0.842,115,5.02,131,2.217,254,2.381,269,1.167,278,2.516,315,2.621,325,2.78,340,1.71,395,2.516,409,3.734,422,2.541,447,2.894,647,3.338,660,1.815,800,2.286,1293,3.734,1444,5.835,1461,3.88,1621,4.306,1724,4.306,1883,4.306,1887,3.734,1888,3.88,1889,4.306,1891,3.88,1893,4.062,1894,4.062,1895,3.88,1897,4.676,1898,4.062,1899,4.676]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[65,1.265,769,3.493,1521,4.884]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[769,3.424,1521,4.787,1900,7.122]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.664,65,1.342,193,1.706,225,1.536,269,0.82,270,1.526,390,1.634,423,1.462,1901,5.159]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[850,0.477]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[119,2.211,225,1.869,265,5.993,1534,5.421]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1534,5.804,1902,7.735,1903,7.735]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[26,0.053,31,3.767,32,1.864,33,1.458,34,1.472,54,2.205,61,2.787,62,2.752,65,1.003,119,1.915,142,2.267,193,1.797,288,3.586,305,4.421,402,4.117,595,7.203,695,3.011,769,2.769,776,2.235,1638,3.872,1839,5.19]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[65,1.068,91,1.199,232,2.791,769,2.949,1572,4.011]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[21,0.948,91,0.784,269,0.601,270,1.119,769,1.928,1514,3.613,1652,3.041,1799,3.184,1904,4.355,1905,3.783,1906,4.355]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[17,1.442,21,2.069,22,1.742,26,0.081,33,1.665,34,1.681,51,0.615,225,1.848,235,3.315,269,0.986,270,1.836,390,1.966,695,3.439]],["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/",[4,2.071,26,0.057,288,3.818,769,2.949,1326,3.483]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[21,0.899,269,0.57,270,1.061,769,1.828,1326,2.159,1506,3.298,1907,4.13,1908,4.13,1909,4.13,1910,4.13,1911,4.13,1912,3.587]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,2.634,17,1.219,21,1.844,22,1.473,26,0.083,33,1.408,34,1.422,51,0.564,65,0.969,203,2.488,225,1.563,235,2.803,269,1.17,270,2.177,390,1.662,695,2.907,769,2.674,1326,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/",[28,0.787,119,2.211,1291,4.294,1716,3.119]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[28,0.769,1291,4.191,1716,3.044,1913,6.492]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[3,1.927,12,2.976,26,0.075,32,1.898,45,0.956,51,0.58,65,1.021,130,1.913,142,2.308,187,3.189,286,3.393,351,1.759,397,0.921,948,5.085,950,3.942,1291,5.983,1361,0.948,1914,6.369]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[850,0.477]],["title//docs/development/version-control/introduction-to-version-control/",[169,4.69,175,4.632,486,3.741]],["keywords//docs/development/version-control/introduction-to-version-control/",[168,3.622,1222,5.447,1915,7.051,1916,7.051]],["toc//docs/development/version-control/introduction-to-version-control/",[5,0.949,26,0.057,32,2.007,35,3.522,45,1.011,110,2.789,168,3.459,169,6.159,192,3.775,351,1.86,486,4.913,491,4.439,1917,6.735,1918,7.932,1919,6.735]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[91,1.112,232,2.589,269,0.853,474,3.232,1206,3.292,1572,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1207,4.246,1523,4.364,1920,6.124,1921,5.291]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[21,1.45,26,0.057,28,0.726,1716,2.876,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[21,0.948,28,0.475,243,3.108,1194,2.146,1780,2.871,1811,2.237,1849,2.277,1874,3.613,1875,3.613,1876,3.613,1922,4.01]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[21,1.45,26,0.057,28,0.726,784,3.694,1849,3.483]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[21,0.948,28,0.475,243,3.108,1194,2.146,1211,2.923,1811,2.237,1849,2.277,1874,3.613,1875,3.613,1876,3.613,1922,4.01]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[3,2.302,26,0.065,32,2.267,33,1.773,34,1.79,45,1.142,90,2.311,332,1.867,334,5.312,642,4.778,697,2.851,1849,5.758]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[28,0.674,65,0.991,193,1.775,1173,3.772,1716,2.668,1811,3.174]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[713,3.841,1173,4.721,1175,7.122]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[17,1.041,26,0.044,28,0.562,45,0.774,51,0.516,56,2.088,195,3.983,196,3.769,202,6.392,204,2.36,225,2.552,273,2.313,390,2.715,392,1.793,423,1.269,669,4.239,1173,4.616,1176,7.779,1177,4.478,1519,4.117,1785,4.277,1923,4.747]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[65,0.991,91,1.112,193,1.775,232,2.589,269,0.853,1572,3.721]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[91,1.078,269,0.827,1572,3.608,1652,4.183,1882,5.517,1924,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[26,0.091,33,1.665,34,1.681,51,0.412,56,3.848,225,1.848,269,1.571,273,4.262,390,1.966,482,3.439]],["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/",[28,0.589,91,0.972,232,2.263,332,1.325,741,2.726,905,3.444,1716,2.331,1811,2.774]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[28,0.568,91,0.937,469,2.699,672,2.183,741,2.63,1652,3.637,1716,2.249,1913,4.796]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[26,0.061,45,0.721,51,0.277,65,0.77,75,3.354,119,1.47,128,3.354,182,3.099,187,4.302,262,3.959,332,1.179,336,3.017,439,2.893,446,2.214,469,4.452,539,2.932,660,1.864,741,3.624,771,3.594,786,2.702,799,1.39,959,3.354,1001,3.429,1002,3.429,1009,3.429,1105,3.114,1107,2.754,1297,4.423,1925,3.512,1926,3.605]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[850,0.477]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,1.45,800,3.256,1066,2.508,1573,5.786,1593,3.516]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,1.684,1066,2.913,1593,4.082]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[21,0.888,32,1.216,45,0.612,51,0.235,54,2.234,62,2.788,119,1.249,149,2.214,170,2.366,247,2.49,278,2.195,340,1.492,348,2.153,362,2.366,390,1.744,392,1.419,402,3.005,531,2.602,697,1.529,698,2.788,702,3.544,793,2.982,800,1.994,907,2.395,957,2.689,1027,4.872,1066,3.298,1068,2.982,1296,2.912,1593,4.623,1597,2.49,1927,3.544,1928,3.757,1929,4.08,1930,4.08,1931,4.08,1932,4.08,1933,4.08]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[26,0.053,91,1.112,269,0.853,293,3.292,474,3.232,1206,3.292]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1207,4.246,1523,4.364,1920,6.124,1921,5.291]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[26,0.066,33,1.813,34,1.83,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[247,4.816,254,4.018,641,5.767]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[91,1.003,247,3.401,254,2.838,332,1.367,641,4.073,1572,3.356,1934,5.573]],["toc//docs/security/encryption/full-disk-encryption-xen/",[17,1.386,26,0.058,32,2.046,51,0.533,91,1.665,110,2.844,247,4.19,254,4.712,340,2.511,491,4.526,533,4.45,641,5.019,654,4.608,1935,6.322,1936,6.322,1937,6.866]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[850,0.477]],["title//docs/platform/automating-server-builds/",[36,4.632,65,1.265,198,3.984]],["keywords//docs/platform/automating-server-builds/",[254,3.299,757,4.861,1540,4.623,1938,6.478,1939,6.478]],["toc//docs/platform/automating-server-builds/",[19,3.658,36,4.03,58,2.277,65,1.101,119,3.203,130,2.062,198,3.467,254,3.496,423,1.69,625,5.019,644,4.03,663,4.134,818,4.697,930,4.794,1675,5.482,1676,5.482,1940,6.866]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[65,1.265,392,2.744,777,3.345]],["keywords//docs/email/running-a-mail-server/",[1381,4.428,1677,5.63,1941,7.051,1942,7.051]],["toc//docs/email/running-a-mail-server/",[26,0.032,48,2.515,51,0.22,58,1.265,65,1.638,150,4.395,187,3.01,198,1.926,242,2.56,296,2.723,315,2.138,392,1.327,430,3.165,446,1.758,498,4.606,499,2.129,697,1.429,777,4.728,786,1.436,793,2.788,799,1.104,1043,2.609,1271,2.947,1285,3.512,1361,0.568,1409,2.609,1561,4.291,1658,2.515,1736,3.165,1839,3.165,1840,3.165,1936,3.512,1943,2.862,1944,3.512,1945,6.012,1946,6.012,1947,3.815]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.573,776,2.581,1066,2.72,1593,3.812]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.064,28,0.533,65,0.784,91,0.88,776,1.747,777,2.073,1066,1.841,1593,2.58,1948,4.889]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[21,1.293,26,0.071,33,1.384,34,1.398,40,2.613,51,0.342,90,2.543,95,1.797,126,2.974,402,3.97,499,2.103,663,5.041,694,4.46,697,2.225,776,3.465,786,2.236,1066,2.236,1593,3.134,1597,5.11]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[91,1.3,232,3.027,1044,3.504,1572,4.35]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1572,4.246,1949,6.492,1950,6.492,1951,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[26,0.057,31,4.055,32,2.007,58,2.234,91,1.212,104,3.318,110,2.789,119,2.061,130,2.022,142,2.44,232,2.822,380,4.806,531,4.295,592,4.23,752,4.439,800,3.292,1027,3.459,1044,4.429,1573,5.849]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[850,0.477]],["title//docs/security/linode-manager-security-controls/",[119,2.211,120,2.186,332,1.773,486,3.425]],["keywords//docs/security/linode-manager-security-controls/",[332,1.59,955,4.735,963,2.925,1157,5.005,1952,6.478]],["toc//docs/security/linode-manager-security-controls/",[51,0.241,61,1.861,62,1.837,126,2.091,149,1.459,180,2.753,183,3.134,199,1.621,200,3.846,203,1.72,204,1.912,226,5.272,228,2.01,262,1.925,332,1.025,334,2.916,340,2.36,348,4.681,358,3.335,371,2.981,421,4.116,487,2.367,644,3.788,660,1.621,663,3.886,698,1.837,771,2.091,776,1.493,795,6.853,944,2.981,963,1.886,1004,3.465,1028,3.053,1117,6.542,1157,3.227,1953,4.177,1954,4.177]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[31,4.751,32,2.352,40,3.471]],["keywords//docs/security/backups/backing-up-your-data/",[19,4.738,37,3.757,1955,5.173,1956,6.478]],["toc//docs/security/backups/backing-up-your-data/",[4,1.764,6,1.503,8,2.831,19,5.937,21,0.772,25,2.475,31,3.416,32,2.415,37,2.056,45,0.851,58,1.176,65,0.91,98,2.592,99,2.831,170,2.056,171,2.298,174,1.805,254,1.805,264,1.907,325,3.372,345,2.337,357,1.55,363,2.135,447,2.195,532,5.478,548,2.941,612,2.831,639,2.107,826,2.739,1409,2.425,1788,2.739,1895,2.941,1955,7.078,1957,3.265,1958,2.661,1959,4.928,1960,3.265,1961,2.941,1962,3.546,1963,3.546,1964,3.546,1965,3.546]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[5,1.224,931,5.946]],["keywords//docs/platform/longview/longview/",[931,5.291,1966,7.735,1967,7.735]],["toc//docs/platform/longview/longview/",[26,0.058,40,3.004,54,1.585,79,4.141,130,1.35,180,2.964,187,4.134,224,2.608,254,2.29,257,2.824,262,3.147,294,3.474,315,2.521,338,2.164,339,2.745,351,1.242,447,2.783,482,2.164,672,1.884,701,3.474,800,2.198,898,3.287,907,2.64,929,3.591,931,7.139,1095,3.287,1473,3.906,1898,3.906,1968,4.497,1969,4.497,1970,4.497,1971,4.497,1972,4.497,1973,4.497,1974,3.731,1975,3.906]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[119,2.661,120,2.63]],["keywords//docs/platform/linode-managed/",[955,6.261,1976,8.566]],["toc//docs/platform/linode-managed/",[26,0.063,35,2.619,45,0.752,51,0.289,58,3.729,110,2.075,119,1.533,126,2.508,149,1.75,227,1.449,262,2.308,401,3.016,421,4.722,439,3.016,491,3.302,665,2.247,694,4.692,962,2.669,1105,3.246,1296,5.284,1845,4.351,1894,4.351,1927,4.351,1974,4.156,1977,4.612,1978,5.009,1979,5.009]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[4,1.921,26,0.053,65,0.991,628,3.825,665,2.772,1980,5.368]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[570,4.008,665,3.469,1980,6.719]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[4,2.699,26,0.074,28,0.682,91,1.126,98,4.573,119,1.915,131,2.966,142,2.267,170,3.628,174,3.185,182,2.701,338,3.011,363,3.767,430,5.19,548,5.19,639,3.718,665,2.806,1326,3.271,1980,9.355]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[28,0.674,269,0.853,1182,3.464,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[29,3.299,1982,6.478,1983,6.478,1984,5.965,1985,5.173]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[5,1.263,26,0.076,90,2.723,269,1.238,718,2.692,1182,6.158]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[26,0.053,28,0.674,1281,3.542,1716,2.668,1986,3.673,1987,4.005]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[570,2.387,948,3.679,1780,3.037,1986,2.738,1988,3.367,1989,3.037,1990,3.037,1991,2.986,1992,2.986,1993,4.607]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[26,0.074,45,1.312,51,0.504,87,5.264,338,4.207,718,2.625,1986,6.429]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[850,0.477]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[5,0.761,28,0.589,47,1.061,55,2.163,63,1.903,224,3.132,1314,2.798,1716,2.331]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[28,0.568,47,1.024,55,2.087,812,2.675,1314,2.699,1994,5.209,1995,5.209,1996,4.796]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[26,0.068,47,1.563,51,0.587,65,1.275,199,3.086,204,3.639,397,1.15,718,2.388,1314,5.281,1361,1.183]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[850,0.477]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[28,0.628,59,3.343,63,2.032,65,0.924,777,2.444,1716,2.488,1997,3.426]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1381,3.763,1780,3.95,1997,3.561,1998,5.992,1999,4.496,2000,4.496]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[26,0.066,45,1.167,51,0.579,58,2.579,90,2.362,95,2.353,272,2.885,278,4.183,423,1.914,777,4.259,1997,4.622]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[28,0.589,420,4.052,1716,2.331,1811,2.774,1981,3.095,2001,3.77,2002,3.694,2003,3.295]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[270,1.54,1700,2.82,1780,3.95,2003,3.657,2004,4.379,2005,4.971]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[26,0.084,51,0.354,94,2.385,95,1.86,130,1.846,169,3.653,227,1.778,332,1.508,357,2.687,581,4.387,660,2.385,718,1.846,799,1.778,858,2.813,1049,2.326,2003,7.107,2006,5.66,2007,6.147]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[850,0.477]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[28,0.628,63,2.032,65,0.924,193,1.655,214,2.987,1716,2.488,2008,3.196]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[269,0.894,1173,3.954,2008,3.593,2009,4.735,2010,4.623]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[49,4.901,273,3.735,340,3.046,400,4.83,402,3.949,765,5.49,1173,6.405]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[28,0.726,58,2.209,227,1.927,1201,3.959,1716,2.876]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[337,2.021,371,3.108,570,2.257,665,1.953,1068,3.184,1201,2.589,1359,3.041,1780,2.871,1944,4.01,2011,4.355,2012,4.01]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[6,3.029,26,0.061,51,0.412,61,3.184,62,3.143,193,2.052,331,3.882,371,6.782,660,2.773,776,2.553,1201,5.648,1359,4.988,1658,4.71,1757,4.988,2013,6.579]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.628,776,2.06,1194,2.839,1716,2.488,1811,2.96,1981,3.304,2014,3.426]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[2014,3.851,2015,6.478,2016,6.478,2017,4.432,2018,4.861]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.06,45,1.051,340,2.561,392,3.261,397,1.012,423,1.724,718,2.103,944,4.998,963,3.162,992,4.466,1361,1.042,1638,4.334,1814,4.334,2014,6.283,2019,5.118]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[28,0.628,776,2.06,784,3.196,1194,2.839,1317,5.006,2014,3.426,2020,5.764]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[2014,3.851,2017,4.432,2018,4.861,2021,6.478,2022,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[26,0.062,45,1.095,340,2.667,392,3.35,423,1.795,718,2.19,944,5.205,963,3.293,992,4.651,1638,4.514,1814,4.514,2014,6.411,2019,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1039,3.82]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.589,47,1.061,1178,2.085,1194,2.66,1716,2.331,1811,2.774,1837,2.66,1981,3.095]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[47,1.273,1537,3.803,2023,5.005,2024,5.627,2025,4.523]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[12,2.872,17,1.241,26,0.052,35,4.485,45,0.922,51,0.616,72,3.751,90,1.867,95,1.86,177,5.653,225,1.59,272,2.281,340,2.248,390,1.691,423,1.513,499,2.176,552,3.275,1178,2.373,1433,3.86,1837,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[28,0.554,269,0.701,270,1.305,392,1.766,1194,2.502,1258,2.817,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[269,0.769,270,1.432,1258,3.09,1700,2.623,1869,3.812,1870,3.812,1871,4.84]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[26,0.068,33,1.854,34,1.871,51,0.458,269,1.407,270,2.618,340,2.909,1258,4.41,1872,5.967,1873,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[850,0.477]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[5,0.812,28,0.628,274,3.567,1281,3.304,1987,3.735,2026,3.383,2027,5.764]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1988,3.019,1990,2.722,1991,2.677,1992,2.677,2026,2.424,2028,4.13,2029,4.13,2030,3.099,2031,2.722,2032,2.222,2033,4.13,2034,4.13]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[5,0.931,26,0.056,51,0.381,54,2.329,149,2.308,204,3.024,225,1.709,319,3.879,362,3.832,390,1.818,423,1.627,499,2.34,733,3.832,800,3.23,2026,6.024,2032,3.555,2035,4.958,2036,4.614,2037,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[28,0.726,191,3.516,1716,2.876,1811,3.422,1981,3.818]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[22,1.579,904,3.271,2038,6.478,2039,6.478,2040,4.623]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[26,0.073,40,2.704,51,0.354,94,2.385,120,2.595,131,2.914,142,2.227,191,6.146,205,3.804,234,3.409,264,3.306,351,1.697,392,2.138,428,3.92,529,3.445,1086,3.445,2041,6.121]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1319,3.863,1716,2.876,1811,3.422,1981,3.818]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.049,28,0.628,47,1.133,1194,2.839,1716,2.488,1811,2.96,1981,3.304]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[28,0.607,47,1.095,337,2.586,713,2.768,2024,4.84,2044,5.573,2045,5.573]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[26,0.1,33,1.632,34,1.648,47,2.218,90,2.127,131,3.32,295,4.32,357,3.061,1697,6.448,2046,7.003]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2047,3.818]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[5,0.675,17,0.968,28,0.523,418,3.347,1716,2.07,1811,2.463,1981,2.748,2051,3.16,2052,3.107,2053,4.415]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[28,0.589,227,1.562,351,1.491,698,2.375,1483,3.095,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[28,0.674,269,0.853,606,3.825,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[55,2.825,269,0.973,606,4.364,1313,3.249]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[26,0.057,33,1.57,34,1.585,51,0.669,54,2.374,222,4.806,223,4.702,269,0.93,310,3.001,399,4.923,812,5.707,1313,3.103,1319,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2054,3.656]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[28,0.607,168,2.862,476,3.356,1837,2.745,2005,4.623,2048,3.356,2054,3.058]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[5,0.715,28,0.554,49,2.166,58,1.685,269,0.701,341,2.234,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[5,0.812,28,0.628,227,1.668,763,4.113,1716,2.488,1958,4.325,2061,4.113]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[28,0.653,1780,3.95,2061,4.276,2062,5.204,2063,4.971,2064,5.992]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[5,0.967,26,0.079,45,1.03,51,0.533,187,3.438,295,3.164,310,3.059,340,2.511,410,4.9,596,4.312,718,2.062,1357,5.482,2061,6.604,2063,5.696,2065,5.304,2066,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[28,0.589,65,0.866,193,1.551,269,0.745,1194,2.66,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[28,0.568,269,0.719,570,2.699,713,2.587,1780,3.434,1811,2.675,1924,4.524,2067,5.209]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[26,0.092,33,1.7,34,1.716,51,0.42,56,3.901,225,1.887,269,1.489,273,3.271,390,2.007,482,3.51,1492,5.634]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[28,0.628,63,2.032,65,0.924,193,1.655,305,2.935,1716,2.488,2068,3.163]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1780,4.27,1881,4.199,2005,5.374,2068,3.555,2069,6.478]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[26,0.058,45,1.03,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,423,1.69,660,3.591,754,5.727,814,6.329,1027,3.527,2068,5.078]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[28,0.726,1716,2.876,1811,3.422,1981,3.818,2070,3.775]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2072,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[5,0.871,28,0.674,65,0.991,193,1.775,1716,2.668,2068,3.392]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[665,2.193,1780,3.223,1881,3.169,2005,4.056,2068,2.683,2073,4.889,2074,3.904,2075,4.889,2076,3.574]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[26,0.058,45,1.03,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,423,1.69,660,3.591,754,5.727,814,6.329,1027,3.527,2068,5.078]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[850,0.477]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[26,0.043,28,0.554,47,0.998,171,3.292,270,1.305,1178,1.961,1716,2.193,1811,2.609,1981,2.911]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[47,1.024,270,1.338,1178,2.011,1537,3.058,1538,3.496,2024,4.524,2077,5.209,2078,5.209]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[28,0.674,65,0.991,1187,3.147,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[21,1.192,22,1.335,26,0.067,28,0.597,45,0.822,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,423,1.348,799,1.585,858,2.506,1049,2.072,1178,2.115]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[28,0.554,120,1.537,530,3.058,776,1.815,1716,2.193,1760,3.474,1811,2.609,1981,2.911,2079,3.1]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[28,0.628,58,1.912,495,3.62,499,2.041,1716,2.488,2081,4.113,2082,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[28,0.653,499,2.122,672,2.51,2082,3.288,2083,5.992,2084,5.992]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[3,2,17,1.334,26,0.056,45,0.992,51,0.519,58,2.192,87,3.979,225,1.709,272,2.452,422,3.59,423,1.627,799,1.912,1414,5.943,2082,6.05,2085,4.614,2086,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[5,0.761,28,0.589,40,2.375,206,3.342,235,2.506,1716,2.331,2087,2.905,2088,3.854]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[28,0.706,904,3.271,2087,3.485,2089,4.623,2090,5.374]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[5,1.367,26,0.083,2087,6.2]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[5,0.675,28,0.523,278,2.579,499,1.698,1194,2.362,1716,2.07,1811,2.463,1981,2.748,2091,2.554,2092,3.28]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[850,0.477]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[21,1.175,22,1.316,28,0.589,63,1.903,1074,2.934,1716,2.331,1811,2.774,1981,3.095]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[21,1.41,1475,4.27,1780,4.27,2096,5.005,2097,4.735]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[17,1.752,21,2.549,22,1.525,26,0.053,63,2.205,65,1.003,126,3.132,149,2.185,347,3.872,587,4.124,718,1.879,957,4.124,961,3.872,962,4.625,963,2.824,998,4.368,1077,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[21,1.573,26,0.061,28,0.787,784,4.006]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.284,21,0.899,28,0.45,1211,2.772,1475,2.722,1477,3.298,1479,2.947,2098,4.13,2099,4.13,2100,4.13,2101,4.13,2102,4.13]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[5,0.866,17,1.731,21,2.535,22,1.498,26,0.052,33,1.433,34,1.446,65,0.986,126,3.078,149,2.147,347,3.804,587,4.052,957,4.052,961,3.804,962,4.569,963,2.775,998,4.291,1077,3.523]],["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/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,1716,2.331,1811,2.774]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[26,0.065,51,0.438,65,1.588,110,3.151,204,3.482,319,4.466,397,1.1,592,4.778,719,5.53,1361,1.132]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[850,0.477]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,0.871,22,1.507,28,0.674,46,2.668,1074,3.357,1716,2.668]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[46,2.797,1075,5.173,1076,3.954,1170,4.348,1780,4.27]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[17,2.051,22,2.17,26,0.076,45,0.973,46,4.388,51,0.374,149,2.266,228,3.122,237,4.204,332,1.592,660,2.517,963,2.929,1077,3.718,1081,4.276,2103,5.011,2104,5.011]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[26,0.046,28,0.589,65,0.866,1716,2.331,1811,2.774,1981,3.095,2032,2.905,2105,3.17]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2032,3.223,2105,3.517,2106,5.992,2107,4.496,2108,4.496,2109,4.496]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[5,1.049,26,0.063,51,0.429,65,1.194,295,3.432,296,5.315,340,2.724,499,2.637,694,3.967,799,2.155,2032,4.006,2037,4.826,2105,5.733,2110,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[28,0.674,65,0.991,769,2.736,1716,2.668,1811,3.174,1981,3.542]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[21,1.064,28,0.533,269,0.675,270,1.256,769,2.165,1506,3.904,2111,3.777,2112,4.889,2113,4.889]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[17,1.442,21,2.069,22,1.742,26,0.081,33,1.665,34,1.681,51,0.615,225,1.848,235,3.315,269,0.986,270,1.836,390,1.966,695,3.439]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[850,0.477]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[65,1.265,227,2.283,1961,6.546]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[107,5.374,227,2.573,893,5.374,1961,5.374]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[5,0.962,26,0.038,51,0.393,95,1.361,99,3.591,104,2.215,110,1.863,119,2.527,120,2.498,126,2.252,130,2.479,227,2.389,351,1.242,491,2.964,531,2.868,535,3.21,661,2.824,698,3.632,776,1.607,799,1.301,826,3.474,930,4.768,931,3.076,1044,2.181,1195,3.731,1351,4.141,1359,3.14,1372,3.906,1675,3.591,1676,3.591,1895,3.731,1957,4.141,2114,4.497]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[65,1.265,227,2.283,2115,6.853]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[227,2.04,1632,7.521,2115,6.124]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[3,1.789,5,0.526,17,1.193,21,1.287,26,0.089,45,0.56,51,0.524,65,0.599,94,1.449,95,1.13,110,3.039,118,2.665,126,2.96,149,2.065,150,4.321,193,1.072,225,0.966,227,1.08,269,0.515,270,1.519,325,2.219,331,2.028,357,1.632,397,0.54,581,2.665,658,2.219,694,1.989,698,1.642,718,1.121,858,3.358,906,2.42,1361,0.556,1898,3.243,2006,3.438,2115,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[850,0.477]],["title//docs/applications/social-networking/dolphin/",[2116,8.404]],["keywords//docs/applications/social-networking/dolphin/",[2116,6.719,2117,6.176,2118,7.122]],["toc//docs/applications/social-networking/dolphin/",[21,1.075,22,1.204,26,0.092,32,1.472,45,0.741,51,0.422,56,2,65,0.792,94,1.917,130,1.483,149,1.725,259,3.525,270,2.244,273,2.215,392,1.718,416,4.471,694,2.631,698,2.173,718,1.483,754,3.057,776,1.765,814,3.378,916,3.61,948,3.944,2116,8.964,2119,4.939]],["deprecated//docs/applications/social-networking/dolphin/",[618,0.696,847,0.637,850,0.087,2118,2.143,2120,0.871,2121,0.871,2122,0.871]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,0.938,22,1.624,120,2.016,402,3.159,1139,4.065]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[21,1.003,22,1.123,500,3.457,1139,2.812,1849,2.409,2123,4.607,2124,4.607,2125,4.607,2126,4.607,2127,4.607]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[17,1.57,21,1.693,22,2.449,120,3.039,149,2.717,203,3.203,402,5.276,500,5.835,2128,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/",[4,2.071,26,0.057,65,1.068,2129,5.786,2130,6.134]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2129,6.124,2131,7.051,2132,7.051,2133,7.051]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[26,0.073,51,0.494,94,3.328,110,3.552,357,2.687,799,1.778,2129,10.756,2130,5.66,2134,10.689,2135,6.147]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[254,3.679,665,3.24,906,4.682,959,5.044]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[254,3.939,665,3.469,906,5.013]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[17,1.241,110,2.546,119,1.881,142,2.227,174,3.13,254,5.93,257,3.86,263,4.493,364,4.387,548,5.099,658,3.653,710,4.387,906,3.984,907,5.034,1120,5.66,1136,4.493,1761,5.66,2136,5.339,2137,5.099]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[254,3.679,487,4.094,906,4.682,1788,5.581]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[254,3.939,1534,5.804,2138,7.735]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[17,1.752,51,0.36,119,3.052,126,3.132,142,3.146,254,5.485,257,3.929,357,2.735,533,4.054,658,5.927,906,4.054,907,3.672,1136,4.573,2136,7.541]],["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/",[28,0.787,1044,3.504,1716,3.119,1811,3.711]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[28,0.843,1044,3.751,1811,3.973]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[26,0.051,28,1.067,31,3.638,32,1.8,58,2.004,104,2.976,110,2.502,119,1.849,130,1.814,142,2.189,380,4.311,531,3.853,592,3.794,752,3.982,988,5.012,1027,3.103,1044,5.145,1194,2.976,1195,5.012,2139,2.692,2140,5.012]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[850,0.477]],["title//docs/troubleshooting/rescue-and-rebuild/",[1136,6.354,2141,7.211]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1136,6.261,2141,7.106]],["toc//docs/troubleshooting/rescue-and-rebuild/",[3,1.683,19,2.964,25,3.884,26,0.047,95,1.683,110,3.31,119,1.703,182,2.402,254,2.833,257,5.019,351,2.207,392,1.935,455,3.494,535,3.971,654,3.734,658,3.307,665,2.495,959,3.884,962,2.964,1027,2.858,1136,6.836,1569,5.123,2141,4.615,2142,4.832,2143,5.123,2144,5.564]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[65,1.265,119,2.415,1534,5.921]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2145,7.735,2146,7.735,2147,7.735]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[3,1.56,17,1.526,45,0.774,50,3.6,51,0.568,58,1.71,119,2.315,126,2.582,142,1.868,171,3.342,205,3.191,233,2.922,254,4.561,257,3.238,339,3.147,439,3.105,533,3.342,592,3.238,644,3.027,654,3.46,658,4.495,663,3.105,906,3.342,982,3.869,1007,4.747,1043,3.527,1136,3.769,1344,4.747]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[850,0.477]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[51,0.455,254,4.018,533,5.114]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[254,4.362,2148,8.566]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[4,1.493,5,1.011,17,1.734,26,0.041,51,0.617,110,1.99,131,2.278,254,5.647,286,2.559,401,4.322,491,3.167,533,6.935,589,4.173,661,3.017,917,3.605,981,3.985,1004,3.985,1095,3.512,1935,4.423,2149,4.423,2150,4.804]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1035,6.652,1046,5.28,1047,5.993,1048,5.421]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1046,4.379,1047,4.971,1048,4.496,1827,5.204,1828,5.204,2151,5.992]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[58,2.075,130,1.879,184,5.19,397,0.904,401,3.767,446,2.883,487,3.545,629,4.465,660,2.428,1046,6.346,1047,5.19,1048,6.515,1130,5.434,1824,5.76,1826,4.833,1827,5.434,1828,7.541,1829,5.19,2152,6.256,2153,6.256,2154,6.256]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[850,0.477]],["title//docs/troubleshooting/troubleshooting/",[800,4.729]],["keywords//docs/troubleshooting/troubleshooting/",[800,4.691]],["toc//docs/troubleshooting/troubleshooting/",[3,1.577,5,0.45,12,1.492,22,0.778,51,0.184,65,0.512,119,2.91,120,1.577,126,1.598,149,1.115,171,2.069,182,1.378,193,0.917,203,2.146,204,1.461,206,1.976,218,2.142,219,2.278,225,0.826,254,2.654,305,1.625,329,2.229,362,3.022,373,3.638,390,0.878,392,1.812,397,0.461,422,1.734,455,2.005,470,2.939,487,1.809,498,1.976,499,1.13,641,2.333,644,1.874,663,1.922,665,1.432,672,1.337,694,1.701,698,1.404,926,2.278,963,2.353,1069,2.549,1406,2.772,1462,2.772,1727,4.161,1823,2.466,1884,2.772,2155,3.192,2156,3.192,2157,2.772,2158,3.192,2159,3.192,2160,3.192,2161,3.192,2162,3.192,2163,3.192,2164,3.192,2165,2.939,2166,3.192,2167,3.192,2168,3.192,2169,3.192]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[487,4.926,963,3.925]],["keywords//docs/platform/accounts-and-passwords/",[120,2.134,487,3.996,955,5.154,963,3.184]],["toc//docs/platform/accounts-and-passwords/",[45,0.785,61,2.332,62,2.302,119,2.34,120,2.313,130,1.571,149,3.155,397,1.105,401,3.151,416,4.666,455,4.801,663,4.603,694,2.788,776,2.732,961,4.732,962,2.788,963,4.485,1069,4.178,1974,6.342,2019,3.825,2142,4.545]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[482,4.657]],["keywords//docs/platform/support/",[482,3.394,2170,7.051,2171,7.051,2172,7.051]],["toc//docs/platform/support/",[119,2.816,326,7.107,482,4.427,718,2.762,1974,7.631,2173,9.199]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[5,0.812,19,3.071,40,2.535,58,1.912,119,1.764,332,1.414,1561,4.113]],["keywords//docs/platform/linode-backup-service/",[2174,4.889,2175,4.889,2176,4.889,2177,4.889,2178,4.889,2179,4.889,2180,4.889,2181,4.889,2182,4.889]],["toc//docs/platform/linode-backup-service/",[19,6.129,25,6.416,58,2.592,119,2.813,120,1.632,122,4.684,126,2.7,340,1.973,403,3.849,422,2.93,446,2.485,447,3.338,523,4.966,585,4.474,625,3.942,658,3.206,1098,3.942,1734,4.474,1820,7.195,1829,4.474,2183,5.393]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[225,2.249,305,4.426]],["keywords//docs/websites/hosting-a-website/",[305,3.59,1677,5.63,1678,6.124,1696,6.492]],["toc//docs/websites/hosting-a-website/",[3,1.454,17,0.97,21,1.562,22,2.094,26,0.073,45,0.721,48,3.167,51,0.277,65,0.77,90,1.459,119,2.63,193,1.38,203,1.979,225,1.243,235,2.229,269,0.991,270,2.208,305,2.446,361,5.877,390,1.322,498,2.973,499,2.541,588,7.911,624,3.167,695,2.312,710,3.429]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[65,1.394,332,2.133]],["keywords//docs/security/securing-your-server/",[332,2.067,338,2.884,665,2.687,2184,5.992,2185,5.992]],["toc//docs/security/securing-your-server/",[5,0.61,16,1.794,17,0.874,28,0.472,51,0.25,58,2.999,61,1.93,62,1.905,91,0.779,130,1.993,149,1.513,157,1.39,159,1.217,203,1.784,262,1.996,325,2.574,332,1.063,338,2.085,348,2.286,392,1.506,401,3.996,403,3.091,410,3.091,487,2.455,570,2.244,580,3.593,660,1.681,665,3.618,672,1.815,957,2.855,998,3.024,1362,2.855,1433,2.72,1561,3.091,1689,3.988,1975,3.762,2036,3.024,2186,4.331,2187,3.988,2188,4.331,2189,5.505]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[32,1.985,45,1,65,1.068,769,2.949,1521,4.123]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[769,3.424,1521,4.787,1900,7.122]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.664,65,1.342,193,1.706,225,1.536,269,0.82,270,1.526,390,1.634,423,1.462,1901,5.159]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[28,0.674,65,0.991,227,1.788,2190,4.411,2191,4.411,2192,4.315]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[28,0.653,227,1.734,2190,4.276,2192,4.183,2193,5.992,2194,5.517]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[269,1.2,2195,7.55]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[269,0.973,2195,6.124,2196,7.051,2197,7.051]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[16,2.9,26,0.06,51,0.403,644,4.11,663,4.217,718,2.103,1117,5.809,2195,8.144,2198,7.003,2199,7.003,2200,7.003,2201,7.003,2202,7.003,2203,7.003,2204,7.003,2205,7.003,2206,7.003]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[51,0.455,269,1.089,2207,7.265]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[269,1.183,2208,8.566]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[26,0.065,45,1.142,61,3.39,62,3.347,90,2.311,159,2.138,175,4.466,339,4.643,958,6.075,2207,10.139,2209,7.608,2210,7.608]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[91,1.199,776,2.38,1034,2.808,2014,3.959,2211,3.206]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2017,4.432,2018,4.861,2212,6.478,2213,6.478,2214,5.965]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[26,0.054,45,0.956,51,0.367,340,2.33,392,2.215,397,0.921,423,1.568,697,2.386,786,3.31,805,3.887,806,3.271,944,4.545,963,2.876,992,4.062,1150,4,1361,0.948,1814,3.942,2014,5.225,2019,4.655,2137,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[850,0.477]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[4,1.921,5,0.871,6,2.62,619,4.315,620,4.935,964,4.637]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[620,6.84,964,6.428]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[3,3.104,6,2.065,7,4.256,17,1.464,19,2.595,32,1.452,45,0.731,51,0.281,54,1.717,77,4.041,84,3.015,139,5.062,216,5.71,286,2.595,619,6.7,656,3.655,661,3.059,964,3.655,990,6.298,1027,2.502,1371,4.485,1488,6.917,2215,4.871,2216,4.871,2217,4.871]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[28,0.726,65,1.068,1187,3.392,2140,5.526,2218,5.786]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[32,1.985,45,1,58,2.209,499,2.359,1139,4.065]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[499,3.033,1139,5.228]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[5,1.202,120,2.581,428,5.44,498,5.279,499,3.02,1004,7.076,1143,9.809,1959,7.409]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1171,6.522,2219,7.211]],["keywords//docs/websites/cms/kloxo-guides/",[1139,4.303,2219,5.85,2220,5.032,2221,5.032]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[65,1.158,159,2.031,1034,3.045,1187,3.679]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[21,1.211,22,1.356,26,0.068,45,0.835,47,1.838,51,0.321,63,3.297,65,1.281,95,1.683,130,1.671,142,2.016,193,1.598,225,1.439,227,1.61,270,1.43,332,1.365,351,1.536,357,2.432,390,1.531,423,1.37,799,1.61,858,2.546,1049,2.105,1178,2.148,1701,4.175]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[17,1.593,487,4.472,2222,6.546]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[487,4.384,2222,6.417,2223,7.122]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[17,2.354,95,2.997,149,3.46,397,1.1,487,5.613,1361,1.132,2223,9.119]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[850,0.477]],["title//docs/websites/cms/directadmin/",[2222,8.027]],["keywords//docs/websites/cms/directadmin/",[2222,7.962]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[28,0.726,65,1.068,769,2.949,2140,5.526,2218,5.786]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1666,5.005,2111,5.005,2224,6.478,2225,6.478,2226,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[26,0.061,159,2.031,2219,5.993,2227,2.535]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1139,4.303,2219,5.85,2220,5.032,2221,5.032]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[26,0.085,439,6.01,669,5.595]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[28,0.787,1044,3.504,2140,5.993,2218,6.275]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2228,7.051,2229,7.051,2230,5.85,2231,5.85]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[142,3.617,1044,5.683]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[850,0.477]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[5,0.871,26,0.053,697,2.316,786,2.327,1139,3.772,1150,3.881]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[644,4.54,697,2.898,1139,4.721]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[17,1.642,26,0.069,33,1.896,34,1.915,395,4.376,697,3.048,786,3.893,800,3.976,806,4.179,1150,5.11]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[157,2.532,975,5.295,2232,6.546]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[157,2.079,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[850,0.477]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[159,2.218,975,5.295,1034,3.326]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[159,1.821,264,3.485,789,4.523,975,4.348,976,5.374]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[91,1.3,975,4.848,1034,3.045,2211,3.477]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[91,1.078,264,3.223,789,4.183,975,4.021,976,4.971,2211,2.884]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[21,2.002,26,0.078,45,1.381,270,2.364,975,6.174,1296,6.565]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[65,1.158,157,2.318,769,3.198,2232,5.993]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1799,5.154,1800,5.291,2233,7.051,2234,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[21,2.242,22,1.971,26,0.088,32,1.685,45,1.213,51,0.628,65,1.296,193,1.624,225,1.462,235,2.623,269,1.116,270,1.453,390,1.556,423,1.392,545,3.664,695,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[850,0.477]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[159,2.218,769,3.493,1034,3.326]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[21,1.213,159,1.566,269,0.769,270,1.432,769,2.467,1036,4.45,1311,5.131]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[17,1.386,21,2.014,22,1.674,26,0.089,33,1.6,34,1.616,51,0.645,193,1.972,225,1.776,269,1.277,270,1.764,390,1.889]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1169,5.295,1171,5.921,1528,6.546]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[508,6.84,1169,5.749]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[45,0.809,47,1.06,51,0.311,115,3.849,233,5.208,257,3.387,261,4.684,262,2.485,269,0.744,333,3.942,362,3.128,380,3.849,539,3.291,639,3.206,644,3.166,663,3.247,694,2.873,786,2.031,848,3.942,1003,4.966,1027,2.77,1108,3.247,1169,5.244,2235,4.966,2236,5.393,2237,5.393,2238,5.393,2239,5.393,2240,5.393,2241,4.966]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[21,1.255,91,1.037,776,2.06,1034,2.429,1066,2.17,1593,3.042,2211,2.774]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[91,1.003,776,1.991,1593,2.941,2211,2.682,2214,5.131,2242,5.573,2243,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[21,1.345,159,1.737,776,2.208,1066,2.327,1593,3.262,2227,2.169]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[776,2.315,1596,4.623,2245,6.478,2246,6.478,2247,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[21,1.78,26,0.049,32,2.437,45,1.227,51,0.549,90,2.892,95,1.738,149,2.857,272,2.132,390,1.581,402,3.877,446,2.647,698,2.527,777,2.436,1027,2.951,1066,3.079,1593,3.032,1597,3.506,1598,4.199]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[65,1.158,157,2.318,1187,3.679,2232,5.993]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[21,1.231,22,1.378,26,0.08,45,0.848,47,1.589,51,0.544,65,1.296,95,1.71,130,1.698,193,1.624,225,1.462,227,1.636,270,1.453,332,1.983,390,1.556,397,0.817,423,1.392,624,3.726,799,1.636,1049,2.139,1178,2.183,1361,0.841,1535,3.55]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[65,1.068,91,1.199,1034,2.808,1187,3.392,2211,3.206]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[21,1.156,22,1.295,26,0.066,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,91,0.956,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,397,0.768,423,1.308,799,1.537,858,2.431,1024,4.614,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2191,4.113,2192,4.024]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2248,5.573,2249,4.84,2250,4.623]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[45,1.193,51,0.587,58,2.637,90,2.415,278,4.278,397,1.15,423,1.957,777,4.32,1361,1.183,1997,4.726]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[28,0.726,65,1.068,769,2.949,2191,4.754,2192,4.651]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1666,5.005,2111,5.005,2194,5.965,2251,6.478,2252,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[58,1.791,91,0.972,495,3.391,499,1.912,1034,2.276,2081,3.854,2082,2.963,2211,2.599]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[91,1.166,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2191,3.854,2192,3.77]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2232,4.781]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[5,0.931,26,0.056,45,0.992,51,0.591,331,3.59,351,1.825,397,0.955,423,1.627,486,3.133,499,2.34,529,3.704,660,2.565,1361,0.983,2091,6.147,2095,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2191,3.854,2192,3.77]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[28,0.674,120,1.87,391,4.005,720,3.772,2191,4.411,2192,4.315]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[720,3.954,2254,6.478,2255,5.173,2256,5.173,2257,5.173]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[91,1.112,120,1.87,391,4.005,720,3.772,1034,2.605,2211,2.974]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2259,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[47,1.214,91,1.112,270,1.588,1034,2.605,1178,2.386,2211,2.974]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[47,1.386,1537,4.139,1538,4.732,2260,7.051]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[28,0.674,47,1.214,270,1.588,1178,2.386,2191,4.411,2192,4.315]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[47,1.386,1537,4.139,1538,4.732,2261,7.051]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[119,2.415,898,5.767,1109,5.921]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2262,8.566,2263,8.566]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[51,0.429,204,3.408,478,4.909,517,5.753,661,4.677,663,5.881,1108,4.484,1109,9.012,2264,7.447,2265,7.447]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2191,4.411,2192,4.315]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2023,5.005,2266,6.478,2267,5.965,2268,6.478,2269,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[850,0.477]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[32,1.985,45,1,119,2.039,1107,3.818,1109,4.998]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[672,2.954,1107,4.042,1109,5.291,2270,7.051]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[4,2.915,28,0.763,33,1.632,34,1.648,51,0.403,91,1.26,157,2.247,159,2.635,232,2.934,447,4.334,669,3.925,771,3.506,1034,2.951,1326,3.662,1521,4.334,2165,6.448]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[28,0.787,1044,3.504,2191,5.156,2192,5.044]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2230,5.85,2231,5.85,2271,7.051,2272,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[142,3.617,1044,5.683]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[850,0.477]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[65,0.924,91,1.037,193,1.655,214,2.987,1034,2.429,2008,3.196,2211,2.774]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[269,0.973,1510,5.63,2008,3.91,2010,5.032]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[91,1.199,269,0.92,606,4.123,1034,2.808,2211,3.206]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[157,2.318,269,0.997,606,4.471,2273,3.965]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[28,0.726,269,0.92,606,4.123,2139,2.968,2274,2.876]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/platform/stackscripts/",[36,4.632,63,2.781,547,6.546]],["keywords//docs/platform/stackscripts/",[36,3.803,138,4.735,267,4.01,2275,6.478,2276,6.478]],["toc//docs/platform/stackscripts/",[5,1.295,17,1.089,63,2.755,89,3.689,119,1.651,126,2.7,131,2.557,175,3.166,180,3.555,276,3.166,341,2.372,528,4.684,529,3.023,547,9.775,799,1.56,905,3.439,2056,3.619,2277,5.393,2278,4.966,2279,5.393,2280,5.393,2281,5.393,2282,5.393]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[91,1.112,1034,2.605,2001,4.315,2002,4.227,2003,3.772,2211,2.974]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[157,2.138,2001,4.651,2002,4.557,2003,4.065,2273,3.656]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[157,2.138,269,0.92,606,4.123,1313,3.07,2273,3.656]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[55,2.825,269,0.973,606,4.364,1313,3.249]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[26,0.081,45,1.072,51,0.547,63,2.518,199,3.688,269,1.312,310,3.184,397,1.033,423,1.759,812,3.67,1313,4.379,1361,1.063]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[91,1.3,1034,3.045,2054,3.965,2211,3.477]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[91,0.937,168,2.675,476,3.136,1837,2.566,2048,3.136,2054,2.859,2283,5.209,2284,5.209]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[28,0.787,2054,3.965,2139,3.219,2274,3.119]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[28,0.787,2054,3.965,2285,3.531,2286,3.504]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[91,1.037,120,1.744,476,3.47,722,2.839,1034,2.429,2211,2.774,2287,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[120,1.87,157,1.983,476,3.721,722,3.045,2273,3.392,2287,4.517]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[28,0.628,120,1.744,476,3.47,722,2.839,2285,2.817,2286,2.795,2287,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[120,1.744,159,1.62,276,3.383,2227,2.022,2289,4.113,2290,4.453,2291,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[276,3.803,2289,4.623,2292,5.965,2293,5.627,2294,5.173]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[26,0.088,51,0.469,130,2.443,227,2.354,332,1.996,718,2.443,799,2.354,1049,3.079,2289,7.38]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[120,1.744,157,1.85,276,3.383,2273,3.163,2289,4.113,2290,4.453,2291,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[276,3.803,2289,4.623,2292,5.965,2293,5.627,2294,5.173]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[26,0.085,51,0.448,130,2.335,227,2.25,332,1.908,397,1.124,718,2.335,799,2.25,1049,2.943,1361,1.157,2289,7.169]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[91,0.972,120,1.634,530,3.251,776,1.93,1034,2.276,1760,3.694,2079,3.295,2211,2.599]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[7,4.194,26,0.061,45,1.072,51,0.615,397,1.033,415,4.887,423,1.759,625,5.222,628,4.422,777,3.029,1361,1.063,2079,6.516,2295,6.206]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[91,1.112,119,1.892,120,1.87,1034,2.605,2211,2.974,2296,3.628]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[119,2.039,120,2.016,157,2.138,2273,3.656,2296,3.91]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,1.619,142,1.954,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[157,1.983,227,1.788,351,1.707,698,2.719,1483,3.542,2273,3.392]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[28,0.628,227,1.668,351,1.592,698,2.535,1483,3.304,2285,2.817,2286,2.795]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[65,0.991,91,1.112,227,1.788,1034,2.605,2190,4.411,2211,2.974]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[227,2.478,2190,6.113]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[28,0.628,286,3.071,950,3.567,2285,2.817,2286,2.795,2306,4.602,2307,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1076,2.984,2308,4.889,2309,4.889,2310,4.889,2311,4.247,2312,3.904,2313,3.904,2314,3.777,2315,3.904]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[91,1.3,191,3.812,1034,3.045,2211,3.477]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[22,1.719,191,3.721,904,3.56,2040,5.032]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[91,1.112,269,0.853,474,3.232,1034,2.605,1206,3.292,2211,2.974]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[157,1.983,231,3.094,269,0.853,697,2.316,786,2.327,2273,3.392]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[713,3.502,1709,4.823,1711,6.124,2318,5.85]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[91,1.112,332,1.516,741,3.12,905,3.941,1034,2.605,2211,2.974]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2319,7.735,2320,7.735,2321,7.735]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,4.312,539,4.209,672,2.889,741,3.482,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,1.309,157,2.138,2273,3.656,2322,4.754,2323,5.526]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[850,0.477]],["title//docs/websites/wikis/twiki-on-centos-5/",[159,2.218,2047,4.523,2227,2.769]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-centos-5/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[850,0.477]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[91,1.3,1034,3.045,2047,4.141,2211,3.477]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/twiki-on-fedora-14/",[157,2.532,2047,4.523,2273,4.33]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[850,0.477]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[5,0.938,262,3.07,348,3.516,665,2.988,1105,4.317]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[469,3.105,665,2.687,999,5.517,1107,3.434,1127,5.517,1925,4.379]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[4,1.846,65,1.342,72,3.625,174,3.024,182,3.615,228,4.029,247,3.625,262,4.852,278,3.195,348,3.134,351,2.312,665,2.664,710,4.239,771,4.192,1111,6.282,2076,4.341,2325,8.372]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.921,5,0.871,21,1.345,22,1.507,1074,3.357,1326,3.232]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1854,5.976,1912,6.719,2326,7.735]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[5,1.027,21,2.497,26,0.062,51,0.555,347,4.514,351,2.014,397,1.054,961,4.514,962,3.885,963,3.293,1361,1.085,1692,5.472]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[850,0.477]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[28,0.726,269,0.92,606,4.123,2285,3.256,2286,3.231]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[58,1.912,91,1.037,1034,2.429,1281,3.304,1986,3.426,1987,3.735,2211,2.774]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1988,3.574,1989,3.223,1991,3.169,1992,3.169,2031,3.223,2327,4.889,2328,4.889,2329,4.056,2330,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[26,0.085,45,1.508,51,0.448,87,4.682,338,3.743,397,1.124,423,1.914,718,2.335,1361,1.157,1986,5.971]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[65,0.924,91,1.037,193,1.655,231,2.886,269,0.796,1034,2.429,2211,2.774]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[700,5.173,1510,5.173,2331,6.478,2332,6.478,2333,6.478]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[16,3.509,26,0.083,33,1.408,34,1.422,51,0.488,56,2.447,225,1.563,231,3.025,235,2.803,269,1.351,273,3.8,315,3.386,390,1.662,397,0.873,482,2.907,695,2.907,1361,0.899,1490,4.218,2334,5.247]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[4,2.453,1326,4.126,2054,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2274,2.406]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[26,0.098,47,1.463,51,0.429,65,1.194,193,2.139,269,1.028,397,1.077,733,4.319,1361,1.108,1638,4.609,2054,5.36]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2285,2.817,2286,2.795]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2335,5.517]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[65,1.068,91,1.199,769,2.949,1034,2.808,2211,3.206]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1514,6.417,1905,6.719,2336,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[65,0.991,157,1.983,193,1.775,214,3.203,2008,3.427,2273,3.392]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[269,0.973,2008,3.91,2010,5.032,2337,6.492]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[91,1.037,286,3.071,950,3.567,1034,2.429,2211,2.774,2306,4.602,2307,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1076,2.984,2312,3.904,2313,3.904,2314,3.777,2315,3.904,2338,4.889,2339,4.889,2340,4.889,2341,4.502]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[5,0.715,40,2.234,91,0.914,206,3.144,235,2.357,1034,2.141,2087,2.732,2088,3.625,2211,2.445]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[91,1.269,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[5,0.812,49,2.458,58,1.912,157,1.85,269,0.796,341,2.535,2273,3.163]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[5,0.812,47,1.133,91,1.037,812,2.96,1034,2.429,1314,2.987,2211,2.774]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[47,1.309,91,1.199,305,3.392,1034,2.808,2211,3.206]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[47,1.177,91,1.078,337,2.78,713,2.976,2342,5.517,2343,5.992]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,91,1.069,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,0.812,22,1.405,46,2.488,91,1.037,1034,2.429,1074,3.131,2211,2.774]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1076,4.303,1170,4.732,2344,7.051,2345,7.051]],["toc//docs/databases/postgresql/debian-6-squeeze/",[17,2.092,22,1.642,26,0.078,45,1.011,46,4.474,51,0.388,149,2.353,237,4.365,397,0.974,963,3.041,1077,3.86,1081,4.439,1361,1.002,2103,5.203,2104,5.203]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[91,1.199,269,0.92,1034,2.808,1182,3.734,2211,3.206]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[29,3.59,2346,5.85,2347,6.492,2348,6.492]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[91,1.199,269,0.92,606,4.123,2227,2.338,2350,2.683]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[55,3.099,269,1.068,1318,5.191]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[26,0.055,45,0.973,51,0.66,54,2.286,222,4.629,223,4.529,269,0.895,310,2.89,397,0.938,399,4.741,423,1.597,812,5.618,1313,2.989,1319,3.762,1361,0.965]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[54,2.032,91,1.037,740,4.325,776,2.06,1034,2.429,1066,2.17,2211,2.774]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[91,1.112,269,0.853,606,3.825,1034,2.605,1313,2.848,2211,2.974]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[47,1.214,91,1.112,1034,2.605,1178,2.386,1837,3.045,2211,2.974]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2023,5.005,2267,5.965,2353,6.478,2354,6.478,2355,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[91,0.972,149,1.886,351,1.491,487,3.06,1066,2.033,1593,2.85,2227,1.895,2350,2.175]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[776,2.52,1066,2.655,1593,3.721,2356,7.051]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[26,0.051,45,0.907,51,0.611,58,2.81,228,2.907,348,3.188,397,0.873,423,1.487,660,2.344,697,2.263,777,4.498,793,4.416,799,1.748,972,4.824,1066,2.275,1361,0.899,1593,3.188,2357,6.041,2358,6.041]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[28,0.674,269,0.853,474,3.232,1206,3.292,2285,3.021,2286,2.997]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,1.214,91,1.112,1034,2.605,2211,2.974,2322,4.411,2323,5.127]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[26,0.06,45,1.051,47,1.842,51,0.54,65,1.503,199,2.718,204,3.205,397,1.012,423,1.724,482,3.37,858,3.205,1314,5.477,1361,1.042]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[91,1.3,1034,3.045,1319,4.19,2211,3.477]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[91,1.037,776,2.06,1034,3.454,1379,3.799,2211,2.774,2359,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1596,4.276,2360,5.992,2361,5.992,2362,5.517,2363,4.784,2364,4.784]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[26,0.083,51,0.429,54,2.625,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.236,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[91,1.037,120,1.744,476,3.47,722,2.839,2227,2.022,2287,4.213,2350,2.321]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[476,4.246,690,4.246,1180,4.648,2288,5.85]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[26,0.06,45,1.051,51,0.54,142,2.537,269,0.967,320,4.616,351,1.934,397,1.012,423,1.724,552,3.731,722,3.45,809,4.998,1361,1.042,1844,5.118,2287,7.726]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[59,3.343,65,0.924,91,1.037,777,2.444,1034,2.429,1997,3.426,2211,2.774]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1381,3.5,1999,4.182,2000,4.182,2342,5.131,2365,5.573,2366,5.573,2367,5.131]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[28,0.787,2047,4.141,2139,3.219,2274,3.119]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[28,0.787,2047,4.141,2285,3.531,2286,3.504]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[5,0.761,91,0.972,278,2.905,499,1.912,1034,2.276,2091,2.877,2092,3.694,2211,2.599]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[91,0.937,499,1.844,840,3.271,2091,2.775,2095,2.802,2368,5.209,2369,5.209,2370,5.209]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[28,0.726,47,1.309,305,3.392,2285,3.256,2286,3.231]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[28,0.653,47,1.177,337,2.78,713,2.976,2371,5.204,2372,4.971]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[17,1.199,26,0.083,28,0.647,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[91,1.3,1034,3.045,1044,3.504,2211,3.477]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1949,6.492,1950,6.492,2211,3.394,2373,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[142,3.423,316,7.297,351,2.608,1044,5.499]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[4,2.071,47,1.309,1178,2.572,1326,3.483,1837,3.282]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1178,2.501,2025,4.523,2374,6.478,2375,5.627,2376,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[26,0.062,45,1.095,51,0.555,90,2.215,95,2.207,225,1.887,272,2.706,390,2.007,397,1.054,423,1.795,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[4,2.071,47,1.309,270,1.712,1178,2.572,1326,3.483]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1537,4.139,1538,4.732,2375,6.124,2376,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[26,0.068,45,1.193,51,0.458,90,2.415,225,2.057,270,2.043,390,2.188,397,1.15,423,1.957,799,2.301,1178,3.07,1361,1.183]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2273,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[5,0.931,26,0.056,45,0.992,51,0.591,331,3.59,351,1.825,397,0.955,423,1.627,486,3.133,499,2.34,529,3.704,660,2.565,1361,0.983,2091,6.147,2095,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2285,2.639,2286,2.619]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,2.246,47,1.42,305,3.679,1326,3.777]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[47,1.273,713,3.217,2375,5.627,2376,5.627,2377,6.478]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[26,0.078,45,1.381,47,1.808,397,1.33,423,2.264,1361,1.369]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[91,1.3,2054,3.965,2227,2.535,2350,2.91]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[91,0.937,168,2.675,476,3.136,1837,2.566,2048,3.136,2054,2.859,2378,5.209,2379,5.209]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[26,0.095,47,1.349,51,0.603,54,2.42,65,1.101,193,1.972,269,0.948,351,1.896,397,0.993,733,3.982,1361,1.022,1638,4.25,2054,5.078]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/social-networking/phpfox/",[2380,7.726]],["keywords//docs/applications/social-networking/phpfox/",[905,4.933,2117,6.176,2380,6.176]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[850,0.477]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[91,1.3,2047,4.141,2227,2.535,2350,2.91]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2047,4.042,2048,4.246,2049,5.291,2050,5.291]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[26,0.095,51,0.597,65,1.08,142,2.44,193,1.934,269,0.93,351,1.86,397,0.974,718,2.022,799,1.948,1361,1.002,2047,6.369]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[5,0.812,21,1.255,22,1.405,91,1.037,1034,2.429,1074,3.131,2211,2.774]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1854,5.005,2381,6.478,2382,5.965,2383,6.478,2384,6.478]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[28,0.787,2070,4.094,2285,3.531,2286,3.504]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2385,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[58,1.912,157,1.85,495,3.62,499,2.041,2081,4.113,2082,3.163,2273,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2318,5.374]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2285,2.639,2286,2.619]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[28,0.787,1319,4.19,2285,3.531,2286,3.504]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,1.214,91,1.112,2227,2.169,2322,4.411,2323,5.127,2350,2.489]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[63,2.284,276,3.803,474,3.388,1700,3.049,2322,4.623]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[17,1.386,26,0.079,45,1.03,47,1.349,51,0.396,54,2.42,63,2.42,65,1.101,193,1.972,199,3.591,397,0.993,423,1.69,799,1.987,1361,1.022,2322,6.604,2324,5.964]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[5,0.938,21,1.45,22,1.624,1074,3.619,1521,4.123]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[21,1.535,22,1.719,1521,4.364,2314,5.447]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[5,1.173,21,2.626,26,0.071,51,0.48,347,5.155,397,1.204,1361,1.239]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[850,0.477]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[21,1.345,28,0.674,120,1.87,1849,3.232,2285,3.021,2286,2.997]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[21,1.535,28,0.769,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[3,2.207,26,0.082,51,0.555,90,2.215,142,2.642,269,1.007,332,1.789,334,5.092,642,4.58,697,2.732,1849,5.999]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[47,1.309,157,2.138,270,1.712,1178,2.572,2273,3.656]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[47,1.386,1537,4.139,1538,4.732,2386,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[26,0.063,45,1.118,51,0.563,90,2.262,95,2.253,270,1.914,272,2.763,397,1.077,423,1.833,552,3.967,1178,2.875,1361,1.108,2300,4.826,2387,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[47,1.309,157,2.138,1178,2.572,1837,3.282,2273,3.656]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[47,1.386,1537,4.139,2025,4.923,2386,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[26,0.063,45,1.118,51,0.563,90,2.262,95,2.253,272,2.763,397,1.077,423,1.833,552,3.967,1178,3.771,1361,1.108,1562,5.443,1837,3.669]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[28,0.787,1319,4.19,2139,3.219,2274,3.119]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[157,2.532,2070,4.472,2388,4.33]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[67,3.312,140,3.312,159,1.566,368,3.612,2070,3.158,2071,4.073,2389,5.573]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[4,1.921,5,0.871,47,1.214,812,3.174,1314,3.203,1326,3.232]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[47,1.273,55,2.595,812,3.328,1314,3.357,1912,5.627]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[17,1.472,26,0.062,45,1.095,47,1.433,51,0.42,56,2.954,65,1.544,199,2.83,204,3.337,397,1.054,423,1.795,1314,4.992,1361,1.085,1852,3.779]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[5,0.871,47,1.214,157,1.983,812,3.174,1314,3.203,2273,3.392]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[26,0.083,45,1.118,47,1.919,51,0.563,65,1.194,199,2.89,204,3.408,397,1.077,423,1.833,1314,5.061,1361,1.108]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,2273,3.392]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[700,6.176,2390,7.735,2391,7.122]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[12,2.56,16,2.269,26,0.079,45,0.822,51,0.585,56,2.218,65,0.878,225,1.417,235,2.541,269,1.28,273,2.456,337,2.541,345,3.61,390,1.507,397,0.792,400,3.176,423,1.348,482,2.636,642,3.44,695,2.636,924,4.11,963,2.473,1361,0.815,1561,3.909,2392,4.11]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[157,2.318,269,0.997,1182,4.049,2273,3.965]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[29,3.299,2393,6.478,2394,6.478,2395,6.478,2396,5.627]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[5,1.173,26,0.071,45,1.25,90,2.53,269,1.15,397,1.204,423,2.05,1182,5.882,1361,1.239]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[28,0.726,269,0.92,1182,3.734,2285,3.256,2286,3.231]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[29,3.299,1985,5.173,2397,6.478,2398,6.478,2399,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2285,2.817,2286,2.795]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[28,0.653,1709,4.099,1881,3.883,2372,4.971,2400,5.517,2401,5.517]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,2273,3.392]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1854,5.976,1855,6.417,2402,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[5,1.072,21,2.397,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132,1692,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[47,1.42,157,2.318,305,3.679,2273,3.965]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[47,1.177,337,2.78,713,2.976,2318,4.971,2386,5.204,2403,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[17,1.219,26,0.072,45,0.907,47,2.085,56,2.447,94,2.344,95,1.828,120,1.828,130,1.814,131,2.864,227,1.748,332,1.482,357,2.641,397,0.873,423,1.487,718,1.814,799,1.748,858,2.765,1049,2.286,1361,0.899,1701,4.533,1852,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[28,0.628,65,0.924,193,1.655,231,2.886,269,0.796,2285,2.817,2286,2.795]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[269,0.827,713,2.976,2009,4.379,2404,5.992,2405,5.992,2406,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2139,2.568,2274,2.488]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2335,5.517]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2285,2.639,2286,2.619]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[28,0.787,2070,4.094,2139,3.219,2274,3.119]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2407,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[26,0.074,51,0.504,225,2.261,390,2.406,718,2.625,818,5.98,2070,6.13]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2139,2.406,2274,2.331]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[28,0.706,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/redis/redis-on-fedora-14/",[157,2.532,191,4.164,2273,4.33]],["keywords//docs/databases/redis/redis-on-fedora-14/",[22,1.579,191,3.419,904,3.271,2040,4.623,2408,6.478]],["toc//docs/databases/redis/redis-on-fedora-14/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,474,3.232,1206,3.292,2285,3.021,2286,2.997]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2285,2.482,2286,2.463,2409,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1700,2.623,1869,3.812,1870,3.812,2410,5.573,2411,5.573,2412,4.073,2413,4.073]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[26,0.062,45,1.095,51,0.42,269,1.33,270,2.475,273,3.271,340,2.667,397,1.054,423,1.795,1258,4.044,1281,4.18,1361,1.085,1872,5.472,2414,5.823]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2285,2.817,2286,2.795]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2249,4.84,2250,4.623,2415,5.573]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[5,0.761,40,2.375,157,1.733,206,3.342,235,2.506,2087,2.905,2088,3.854,2273,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2285,2.482,2286,2.463]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[5,1.202,26,0.091,397,1.233,799,2.468,1361,1.269,2087,6.249]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2285,2.639,2286,2.619]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[65,1.158,157,2.318,1187,3.679,2273,3.965]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[21,1.156,22,1.295,26,0.066,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,157,1.705,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[28,0.726,65,1.068,1187,3.392,2416,3.136,2417,3.091]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[21,1.192,22,1.335,26,0.067,28,0.597,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,397,0.792,799,1.585,858,2.506,1049,2.072,1178,2.115,1361,0.815]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[65,1.158,157,2.318,769,3.198,2273,3.965]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1799,5.154,1800,5.291,2418,7.051,2419,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[21,2.242,22,1.971,26,0.088,32,1.685,45,1.213,51,0.628,65,1.296,193,1.624,225,1.462,235,2.623,269,1.116,270,1.453,390,1.556,423,1.392,545,3.664,695,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[850,0.477]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[65,1.265,227,2.283,1201,4.69]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1201,4.598,1632,6.176,2420,7.735]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[850,0.477]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[530,4.35,2421,5.421,2422,6.275,2423,6.275]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[4,1.863,393,3.883,877,4.496,2422,5.204,2423,5.204,2424,5.204]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[7,5.832,35,2.736,74,3.734,77,4.341,401,4.603,530,4.603,589,8.629,1486,4.545,1649,7.039,1788,4.042,1888,4.341,2056,5.131,2334,4.545,2422,8.629,2423,9.179,2425,7.645,2426,5.233]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[28,0.674,332,1.516,741,3.12,905,3.941,2285,3.021,2286,2.997]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[28,0.653,469,3.105,672,2.51,741,3.025,2372,4.971,2401,5.517]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[4,1.792,5,0.812,6,2.444,315,3.231,592,3.62,2427,5.006,2428,5.006]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[4,2.192,2427,6.124,2428,6.124,2429,7.051]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[74,5.806,315,5.796,351,2.247,376,5.46,392,2.829,398,7.491,661,5.11,907,4.776,2427,7.066,2428,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/",[3,1.87,38,3.772,619,4.315,995,4.935,2295,5.368,2430,4.774]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[4,1.863,72,3.657,492,4.276,995,4.784,2424,5.204,2431,5.517]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[5,1.072,7,4.466,82,6.608,486,3.607,698,4.356,913,5.43,992,4.852,995,8.792,1848,5.43,2295,8.602]],["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/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,719,2.733,2273,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[28,0.726,65,1.068,1187,3.392,2285,3.256,2286,3.231]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[4,2.071,58,2.209,227,1.927,1201,3.959,1521,4.123]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[26,0.084,51,0.616,54,2.167,59,3.565,142,2.227,269,0.849,371,4.387,392,2.138,397,0.889,718,1.846,777,2.606,1201,6.683,1359,5.988,1361,0.915,1757,4.291]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[28,0.674,58,2.05,227,1.788,1201,3.673,2285,3.021,2286,2.997]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[17,0.983,26,0.092,51,0.499,54,1.717,59,2.825,94,1.89,137,2.76,142,1.765,149,1.701,198,3.661,310,2.17,371,3.476,392,1.694,397,0.704,718,1.463,777,2.065,799,1.409,958,5.79,1082,3.332,1201,6.804,1359,5.062,1361,0.725,1757,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[5,0.871,47,1.214,159,1.737,812,3.174,1314,3.203,2227,2.169]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[26,0.082,45,1.095,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,423,1.795,1314,4.992,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[5,0.871,47,1.214,157,1.983,812,3.174,1314,3.203,2388,3.392]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[26,0.062,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,482,3.51,858,3.337,1314,5.589,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2416,2.713,2417,2.675]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[26,0.062,47,1.893,51,0.555,65,1.544,199,2.83,204,3.337,397,1.054,482,3.51,858,3.337,1314,5.589,1361,1.085]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[28,0.628,54,2.032,740,4.325,776,2.06,1066,2.17,2139,2.568,2274,2.488]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[28,0.628,54,2.032,740,4.325,776,2.06,1066,2.17,2285,2.817,2286,2.795]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[47,1.309,51,0.384,337,3.091,340,2.437,697,2.496]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[47,1.024,333,3.807,337,2.417,697,1.952,1718,4.796,2432,5.209,2433,5.209,2434,5.209]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[5,0.935,17,0.874,26,0.037,47,1.777,51,0.382,54,1.527,120,1.311,169,3.944,214,2.244,225,1.717,245,3.024,337,3.079,361,2.963,390,1.826,395,2.33,482,2.085,552,2.307,645,2.907,697,4.138,771,3.323,786,3.67,805,2.643,806,3.408,1150,2.72,2435,4.331,2436,6.636]],["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/",[5,0.812,47,1.133,91,1.037,812,2.96,1314,2.987,2227,2.022,2350,2.321]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[5,0.812,28,0.628,47,1.133,812,2.96,1314,2.987,2285,2.817,2286,2.795]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[47,1.386,55,2.825,812,3.622,1314,3.654]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[26,0.061,45,1.072,47,1.867,51,0.547,65,1.146,199,2.773,204,3.27,397,1.033,423,1.759,482,3.439,858,3.27,1314,5.533,1361,1.063]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2285,3.021,2286,2.997,2296,3.628]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[28,0.787,191,3.812,2285,3.531,2286,3.504]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[22,1.579,904,3.271,2040,4.623,2437,6.478,2438,6.478]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[17,0.919,26,0.039,40,2.004,51,0.479,56,1.845,94,3.229,120,2.087,130,1.368,131,2.16,142,1.651,191,5.749,205,2.819,227,1.318,234,2.526,264,2.45,332,1.118,351,1.258,392,1.584,397,0.659,428,2.905,529,2.553,799,2.685,858,3.808,1049,1.724,1086,2.553,1361,0.678,1852,2.361,2041,4.921]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[28,0.674,269,0.853,606,3.825,1313,2.848,2285,3.021,2286,2.997]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[6,2.824,7,3.91,94,2.585,763,4.754,911,5.146]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[911,5.976,965,6.176,2439,7.735]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[3,1.632,5,0.76,35,2.82,38,3.291,94,4.151,127,4.966,132,4.047,261,4.684,337,3.626,403,3.849,513,4.306,722,2.657,763,5.577,786,2.031,805,3.291,806,2.77,911,6.037,1111,4.047,1296,3.849,1734,4.474,1848,3.849,2013,4.966,2278,4.966,2440,4.966,2441,4.966,2442,4.966]],["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,1.87,4,1.921,5,0.871,6,2.62,7,3.628,661,3.881]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[4,2.405,965,6.176,2443,7.735]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,3.16,4,2.761,5,1.054,6,3.765,7,2.983,15,3.476,16,2.105,35,2.657,54,1.791,197,3.548,218,3.41,235,2.358,242,3.41,259,3.627,315,2.848,361,3.476,661,7.278,695,2.446,722,2.503,913,3.627,1432,4.414]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[119,2.039,120,2.016,157,2.138,2296,3.91,2388,3.656]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[157,1.983,227,1.788,351,1.707,698,2.719,1483,3.542,2388,3.392]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2285,2.817,2286,2.795]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[46,2.587,1075,4.784,1076,3.657,1170,4.021,2444,5.992,2445,5.992]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,2.016,34,1.568,38,4.065,619,4.651,993,5.319]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[4,2.014,492,4.623,993,5.173,1958,4.861,2446,6.478]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,2.462,5,1.146,6,3.449,38,6.311,82,7.066,214,4.216,486,3.858,993,6.496,1848,7.38]],["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/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2285,2.817,2286,2.795]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2285,2.817,2286,2.795]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1475,4.27,2096,5.005,2097,4.735,2447,6.478,2448,6.478]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[5,1.146,21,2.474,26,0.069,51,0.596,54,2.868,351,2.247,397,1.176,1361,1.211]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2285,3.021,2286,2.997]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2371,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[12,2.776,17,1.199,26,0.051,35,4.378,45,0.891,51,0.607,72,3.625,90,1.804,95,1.797,177,5.519,225,1.536,272,2.204,340,2.172,390,1.634,397,0.859,423,1.462,499,2.103,552,3.164,1178,2.293,1361,0.884,1433,3.73,1837,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[28,0.787,1044,3.504,2285,3.531,2286,3.504]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2230,5.85,2231,5.85,2449,7.051,2450,7.051]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[351,2.608,982,7.088,1044,4.581,2137,7.836,2451,8.204]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[28,0.726,65,1.068,769,2.949,2285,3.256,2286,3.231]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1666,5.005,2111,5.005,2372,5.374,2452,6.478,2453,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[21,2.111,22,2.041,26,0.09,32,1.77,45,1.257,51,0.64,65,1.342,193,1.706,225,1.536,235,2.756,269,0.82,270,1.526,390,1.634,423,1.462,695,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[5,0.871,447,3.825,499,2.188,535,4.411,1080,4.637,2454,5.368]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[499,2.497,800,3.446,1719,5.85,2454,6.124]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[5,1.564,26,0.051,65,0.952,313,4.742,498,3.676,499,2.964,612,4.742,765,3.915,771,2.974,1080,4.456,1248,4.588,1788,4.588,1848,4.239,2454,10.28,2455,5.939,2456,5.939]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[5,0.938,227,1.927,351,1.839,535,4.754,2457,5.786]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[4,1.863,74,4.276,422,3.255,800,2.928,2458,5.992,2459,5.992]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[5,1.072,6,3.226,263,5.561,351,2.101,422,4.133,1848,5.43,1887,6.075,2157,6.608,2457,10.13,2460,7.608,2461,7.608]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[157,2.532,2388,4.33,2462,6.096]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[157,2.263,264,3.793,789,4.923,2462,5.447]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[21,1.255,28,0.628,776,2.06,1066,2.17,1593,3.042,2285,2.817,2286,2.795]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[28,0.607,776,1.991,1593,2.941,2286,2.703,2463,5.573,2464,5.573,2465,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[28,0.674,47,1.214,270,1.588,1178,2.386,2285,3.021,2286,2.997]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[47,1.386,1537,4.139,1538,4.732,2371,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2285,2.639,2286,2.619]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[850,0.477]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,2.016,17,1.345,351,1.839,693,4.869,2467,6.134]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[4,2.014,72,3.954,511,5.965,965,5.173,2424,5.627]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,1.767,5,0.823,6,2.476,17,1.939,35,3.054,88,7.186,332,1.433,351,1.613,693,8.373,2056,3.92,2467,5.378,2468,9.077,2469,8.274,2470,5.841,2471,5.841,2472,5.841]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,2.016,5,0.938,120,2.016,698,2.93,2473,5.786]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2473,6.719,2474,7.735,2475,7.735]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[1,5.909,3,2.855,5,0.796,6,2.397,51,0.544,259,4.034,345,3.726,392,2.811,416,3.45,486,2.68,698,4.793,826,6.245,1012,5.205,1961,4.69,2473,8.196,2476,5.653,2477,5.653]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[22,1.761,198,3.647,341,3.178,719,3.425]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[22,1.719,341,3.102,719,3.343,904,3.56]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[3,2.15,17,0.957,22,1.155,32,1.413,33,1.105,34,1.115,45,0.711,51,0.491,61,2.112,62,2.085,65,0.76,90,1.44,149,1.656,203,1.952,225,1.226,262,2.184,340,2.599,341,3.749,348,2.501,439,2.854,496,4.117,590,3.932,719,2.247,733,2.749,771,2.373,841,8.809,943,4.117,1054,3.784,1080,3.556,2478,4.364,2479,7.105]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[28,0.674,2001,4.315,2002,4.227,2003,3.772,2139,2.754,2274,2.668]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,397,1.15,581,5.675,718,2.388,799,2.301,1049,3.009,1361,1.183,2003,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[157,1.85,193,1.655,224,3.343,270,1.481,1178,2.225,2068,3.163,2388,3.163]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2068,3.555,2480,5.965,2481,5.965,2482,5.965,2483,6.478]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[26,0.073,51,0.614,90,2.591,95,2.581,272,3.165,397,1.233,552,4.544,1361,1.269]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[157,1.983,1602,4.774,1823,4.774,2388,3.392,2484,4.411,2485,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[157,2.263,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[157,2.532,2054,4.33,2388,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[157,1.788,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2486,4.45]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[58,2.05,157,1.983,1281,3.542,1987,4.005,2026,3.628,2388,3.392]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[5,0.866,26,0.052,45,0.922,51,0.354,54,2.167,149,2.147,204,2.813,225,1.59,319,3.608,362,3.565,390,1.691,397,0.889,423,2.111,499,2.176,733,3.565,800,3.004,1361,0.915,2026,5.798,2032,3.306,2035,4.612,2036,4.291,2037,3.984]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[91,1.037,227,1.668,351,1.592,698,2.535,1483,3.304,2227,2.022,2350,2.321]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[850,0.477]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[28,0.628,227,1.668,351,1.592,698,2.535,1483,3.304,2139,2.568,2274,2.488]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[26,0.069,37,4.718,51,0.469,95,2.462,130,2.443,351,2.247,584,5.363,694,4.334,1483,6.515]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[227,2.283,698,3.471,1483,4.523]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[332,1.73,698,3.102,1483,4.042,1484,5.032]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[850,0.477]],["title//docs/websites/wikis/confluence-on-centos-5/",[159,2.218,2227,2.769,2488,5.032]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2488,4.497,2489,7.051,2490,5.63,2491,5.63]],["toc//docs/websites/wikis/confluence-on-centos-5/",[17,1.918,22,1.742,26,0.081,27,5.099,29,3.638,45,1.072,51,0.412,225,1.848,390,1.966,423,1.759,1034,3.011,2488,7.258]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[850,0.477]],["title//docs/websites/wikis/confluence-on-fedora-13/",[157,2.532,2388,4.33,2488,5.032]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2488,4.497,2490,5.63,2491,5.63,2492,7.051]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[17,1.868,22,1.674,26,0.079,27,4.9,29,3.496,45,1.03,51,0.396,225,1.776,390,1.889,397,0.993,423,1.69,1034,2.894,1361,1.022,2488,7.142]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[58,1.912,157,1.85,495,3.62,499,2.041,2081,4.113,2082,3.163,2388,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2493,5.627]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[3,2,17,1.334,26,0.056,51,0.519,58,2.192,87,3.979,225,1.709,272,2.452,397,0.955,422,3.59,799,1.912,1361,0.983,1414,5.943,2082,6.05,2085,4.614,2086,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[5,0.812,157,1.85,278,3.1,499,2.041,2091,3.071,2092,3.943,2388,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[499,2.122,840,3.763,2091,3.192,2094,4.379,2095,3.223,2253,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[5,0.967,26,0.058,51,0.603,331,3.73,351,1.896,397,0.993,486,3.256,499,2.431,529,3.849,660,2.665,1361,1.022,2091,6.228,2095,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,278,2.905,499,1.912,2091,2.877,2092,3.694,2416,2.542,2417,2.506]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[5,0.967,26,0.058,51,0.603,331,3.73,351,1.896,397,0.993,486,3.256,499,2.431,529,3.849,660,2.665,1361,1.022,2091,6.228,2095,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2488,4.497,2490,5.63,2491,5.63,2494,7.051]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[28,0.787,2416,3.4,2417,3.352,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2488,4.497,2490,5.63,2491,5.63,2495,7.051]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[28,0.787,2139,3.219,2274,3.119,2488,4.607]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2488,4.497,2490,5.63,2491,5.63,2496,7.051]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[17,1.971,22,1.815,26,0.063,45,1.118,51,0.429,225,1.926,390,2.049,397,1.077,423,1.833,1361,1.108,2488,7.377]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[28,0.589,58,1.791,495,3.391,499,1.912,2081,3.854,2082,2.963,2416,2.542,2417,2.506]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[499,2.294,672,2.714,2082,3.555,2095,3.485,2497,5.173]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[3,1.963,17,1.309,26,0.055,51,0.374,87,3.906,225,1.678,272,2.407,295,2.989,340,2.372,397,0.938,410,4.629,422,3.524,799,1.877,1361,0.965,1414,5.868,2066,4.353,2082,5.578,2085,4.529,2086,4.629]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[4,2.246,5,1.018,6,3.063,890,5.581]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[242,4.348,393,4.199,890,5.005,2431,5.965,2498,6.478]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[4,2.457,5,1.113,6,3.35,16,2.269,35,2.864,45,0.822,56,2.218,376,3.676,447,3.39,495,3.44,591,4.544,890,8.314,1606,5.043,2065,4.231,2189,4.544,2499,5.477,2500,7.276,2501,9.271,2502,5.477,2503,5.477,2504,5.477,2505,5.477]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[91,1.112,672,2.589,2227,2.169,2350,2.489,2380,4.935,2506,5.69]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[905,4.933,2117,6.176,2380,6.176]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[26,0.078,94,3.57,397,1.33,718,2.762,1361,1.369,2380,7.345]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[5,0.715,17,1.025,28,0.554,418,3.546,2051,3.348,2052,3.292,2053,4.677,2139,2.263,2274,2.193]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[5,0.761,17,1.09,28,0.589,418,3.77,2051,3.559,2052,3.5,2416,2.542,2417,2.506]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[26,0.063,51,0.628,54,2.625,295,3.432,340,2.724,392,2.59,799,2.155,2051,4.909,2052,7.497,2066,4.998]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2139,2.568,2274,2.488]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[28,0.653,1709,4.099,1881,3.883,2400,5.517,2507,4.629,2508,5.517]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[91,0.972,198,2.726,199,2.096,269,0.745,2227,1.895,2350,2.175,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[17,1.71,21,1.844,22,1.473,26,0.09,45,0.907,51,0.348,90,1.835,199,2.344,202,4.311,269,1.17,272,2.242,397,0.873,423,1.487,799,1.748,1361,0.899,2510,4.667,2513,6.546,2515,5.247,2516,5.247]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[28,0.589,198,2.726,199,2.096,269,0.745,2139,2.406,2274,2.331,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[17,1.651,21,1.78,22,1.401,26,0.088,45,0.862,51,0.331,90,1.745,199,2.23,202,4.1,269,1.129,272,2.132,295,2.647,340,2.101,397,0.831,423,1.414,799,1.662,1361,0.855,2066,3.856,2510,4.438,2513,6.318,2515,4.99,2516,4.99]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[58,2.05,159,1.737,1281,3.542,1986,3.673,1987,4.005,2227,2.169]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2517,4.889,2518,4.502]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[26,0.091,45,1.28,51,0.491,87,5.136,338,4.105,718,2.562,1986,6.332]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2139,2.406,2274,2.331]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1033,6.096,2051,5.201,2052,5.114]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2052,5.552,2117,6.84]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[850,0.477]],["title//docs/databases/redis/redis-on-centos-5/",[159,2.218,191,4.164,2227,2.769]],["keywords//docs/databases/redis/redis-on-centos-5/",[22,1.579,191,3.419,904,3.271,2040,4.623,2519,6.478]],["toc//docs/databases/redis/redis-on-centos-5/",[26,0.046,40,2.372,51,0.311,56,2.184,63,1.901,94,2.093,120,2.365,130,1.619,131,2.557,142,1.954,191,5.645,205,3.338,227,1.56,234,2.991,264,2.901,332,1.323,351,1.489,392,1.876,428,3.439,529,3.023,799,2.261,858,2.468,1049,2.041,1086,3.023,1852,2.795,2041,5.577]],["deprecated//docs/databases/redis/redis-on-centos-5/",[850,0.477]],["title//docs/databases/redis/redis-on-fedora-13/",[157,2.532,191,4.164,2388,4.33]],["keywords//docs/databases/redis/redis-on-fedora-13/",[22,1.579,191,3.419,904,3.271,2040,4.623,2520,6.478]],["toc//docs/databases/redis/redis-on-fedora-13/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[28,0.787,191,3.812,2416,3.4,2417,3.352]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[22,1.579,904,3.271,2040,4.623,2521,6.478,2522,5.965]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[157,1.733,199,2.096,269,0.745,270,1.387,392,1.878,1258,2.994,2388,2.963,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[26,0.069,45,1.221,51,0.469,269,1.427,270,2.657,397,1.176,423,2.003,1258,4.512,1361,1.211]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,474,3.232,1206,3.292,2139,2.754,2274,2.668]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[26,0.066,45,1.167,51,0.448,63,2.741,214,4.03,224,4.51,269,1.073,310,3.465,423,1.914,446,3.583,721,5.693,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[28,0.589,198,2.726,199,2.096,269,0.745,2416,2.542,2417,2.506,2509,4.69,2510,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[269,0.894,2511,5.627,2512,5.627,2513,5.005,2514,5.627]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[17,1.651,21,1.78,22,1.401,26,0.088,45,0.862,51,0.331,90,1.745,199,2.23,202,4.1,269,1.129,272,2.132,295,2.647,340,2.101,397,0.831,423,1.414,799,1.662,1361,0.855,2066,3.856,2510,4.438,2513,6.318,2515,4.99,2516,4.99]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[335,4.848,486,3.425,632,4.762,672,3.027]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[338,3.394,632,4.648,672,2.954,992,4.497]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[4,1.334,5,0.787,6,1.071,16,1.047,17,0.51,26,0.022,28,0.275,31,1.522,32,0.753,38,1.542,51,0.247,54,1.97,63,0.891,75,1.764,77,2.097,91,0.455,114,1.896,120,1.298,125,3.136,157,0.811,159,0.71,175,1.483,197,1.764,205,4.963,218,1.696,272,0.938,335,5.382,336,1.587,338,1.216,339,4.894,362,2.488,372,1.696,373,2.995,478,1.666,563,2.195,566,1.764,570,2.223,632,7.257,644,1.483,656,1.896,663,1.522,672,1.059,800,1.235,907,1.483,1077,1.449,1109,4.943,1299,3.95,1326,1.322,1406,2.195,1418,5.147,1436,1.502,1442,2.327,1488,2.018,1893,2.195,2523,2.327,2524,2.527,2525,2.527,2526,2.527,2527,2.527,2528,2.527]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,474,3.232,1206,3.292,2416,2.909,2417,2.868]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[26,0.062,51,0.42,63,2.571,199,2.83,214,3.779,224,4.229,269,1.007,310,3.25,415,4.989,446,4.439,721,6.113,1206,5.132]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[28,0.674,47,1.214,474,3.232,1206,3.292,2139,2.754,2274,2.668]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[28,0.787,191,3.812,2139,3.219,2274,3.119]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[22,1.579,904,3.271,2040,4.623,2522,5.965,2529,6.478]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[26,0.067,51,0.455,551,4.423]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[553,5.627,554,5.627,556,5.627,2530,6.478,2531,6.478]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[26,0.078,33,2.144,34,2.165,51,0.53,551,6.255]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[65,1.158,159,2.031,1187,3.679,2227,2.535]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[21,1.174,22,1.315,26,0.067,45,0.809,47,1.806,51,0.311,63,3.239,65,1.253,95,1.632,130,1.619,142,1.954,193,1.549,225,1.395,227,1.56,270,1.386,332,1.323,351,1.489,357,2.357,390,1.484,397,0.78,423,1.328,799,1.56,858,2.468,1049,2.041,1178,2.082,1361,0.802,1701,4.047]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[850,0.477]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[91,1.3,191,3.812,2227,2.535,2350,2.91]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[22,1.579,904,3.271,2040,4.623,2532,6.478,2533,6.478]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[26,0.045,40,2.302,51,0.301,56,2.119,63,1.844,94,2.031,120,2.313,130,1.571,131,2.481,142,1.896,191,5.577,205,3.239,227,1.514,234,2.902,264,2.815,332,1.284,351,1.445,392,1.82,397,0.756,428,3.337,529,2.933,799,2.212,858,2.395,1049,1.98,1086,2.933,1361,0.779,1852,2.712,2041,5.456]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[157,2.318,269,0.997,274,4.471,1182,4.049]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[29,3.299,2396,5.627,2534,6.478,2535,6.478,2536,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[5,1.231,26,0.074,90,2.655,269,1.207,397,1.264,1182,6.063,1361,1.301]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[157,2.318,269,0.997,1182,4.049,2388,3.965]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[29,3.299,2396,5.627,2537,6.478,2538,6.478,2539,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[5,1.231,26,0.074,90,2.655,269,1.207,397,1.264,1182,6.063,1361,1.301]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[28,0.726,269,0.92,1182,3.734,2139,2.968,2274,2.876]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[29,3.299,1984,5.965,1985,5.173,2540,6.478,2541,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[5,1.072,26,0.084,29,3.874,45,1.142,90,2.311,269,1.05,397,1.1,423,1.873,1182,5.551,1361,1.132,1409,5.204,2349,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[28,0.726,269,0.92,1182,3.734,2416,3.136,2417,3.091]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[29,3.299,1985,5.173,2542,6.478,2543,6.478,2544,6.478]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[5,1.12,26,0.087,29,4.049,90,2.415,269,1.098,397,1.15,1182,5.712,1361,1.183,1409,5.439,2349,5.967]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[4,1.792,104,2.839,129,3.196,858,2.638,927,3.383,1326,3.014,1582,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[859,4.305,860,4.305,861,4.182,862,3.977,1326,2.914,1583,4.45,1584,4.45]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[104,2.839,129,3.196,159,1.62,232,2.415,858,2.638,927,3.383,1582,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[159,1.566,859,4.305,860,4.305,861,4.182,862,3.977,1583,4.45,1584,4.45]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[104,3.045,129,3.427,392,2.149,858,2.828,927,3.628,1582,4.411]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[859,4.629,860,4.629,861,4.496,862,4.276,1583,4.784,1584,4.784]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[26,0.062,51,0.555,94,2.83,104,5.652,142,2.642,198,3.682,351,2.014,357,3.188,478,4.807,858,3.337,927,4.281,1582,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,2.246,65,1.158,1187,3.679,1326,3.777]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[21,1.495,22,1.674,26,0.079,45,1.03,47,1.818,51,0.396,63,2.42,65,1.484,193,1.972,225,1.776,270,1.764,390,1.889,397,0.993,423,1.69,1178,2.651,1361,1.022]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[850,0.477]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[6,2.824,7,3.91,619,4.651,2421,4.998,2545,5.786]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[72,4.303,2545,6.124,2546,7.051,2547,6.492]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[3,3.075,5,1.432,6,2.75,7,3.807,218,4.353,259,4.629,455,4.074,656,4.867,661,4.074,824,5.381,2545,10.285,2548,6.486,2549,5.972]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,2.186,415,4.942,416,4.409,2550,5.993]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[6,2.989,1528,5.85,2551,7.051,2552,7.051]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,3.179,4,2.351,5,1.065,6,2.186,16,2.136,25,3.6,54,1.817,197,3.6,223,3.6,303,3.769,320,3.399,401,3.105,416,6.411,455,3.238,478,3.399,629,3.68,643,4.478,660,2.001,865,4.478,1082,3.527,2550,7.43,2553,5.156,2554,4.747,2555,5.156]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,2.388,619,5.509,913,5.631]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,1.96,139,4.523,913,4.623,992,4.132,2547,5.965]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[1,5.222,3,2.162,5,1.006,6,4.029,698,3.143,898,5.222,913,8.456,992,6.06,2307,5.361,2556,6.206,2557,7.145]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[65,1.158,157,2.318,1187,3.679,2388,3.965]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[21,1.192,22,1.335,26,0.067,47,1.822,51,0.316,63,3.268,65,1.267,95,1.657,130,1.645,142,1.985,157,1.758,193,1.573,225,1.417,227,1.585,270,1.407,332,1.344,351,1.512,357,2.394,390,1.507,391,3.55,397,0.792,799,1.585,858,2.506,1049,2.072,1178,2.115,1361,0.815]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[28,0.726,65,1.068,1187,3.392,2139,2.968,2274,2.876]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,2.014,47,1.273,270,1.665,1187,3.299,1700,3.049]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[21,1.156,22,1.295,26,0.066,28,0.579,45,0.797,47,1.79,51,0.306,63,3.211,65,1.239,95,1.607,130,1.595,142,1.925,193,1.526,225,1.374,227,1.537,270,1.365,332,1.303,351,1.467,357,2.322,390,1.462,391,3.442,397,0.768,423,1.308,799,1.537,858,2.431,1049,2.01,1178,2.051,1361,0.79]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[54,2.032,91,1.037,740,4.325,776,2.06,1066,2.17,2227,2.022,2350,2.321]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[570,3.357,776,2.315,1066,2.439,1108,3.901,2351,5.374]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[12,3.088,17,1.334,26,0.056,45,0.992,51,0.519,59,3.832,225,1.709,332,1.621,390,1.818,397,0.955,423,1.627,776,3.222,777,3.822,793,4.83,1066,3.395,1361,0.983,2352,5.482]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[91,0.972,168,2.774,235,2.506,276,3.17,672,2.263,2227,1.895,2350,2.175,2558,4.69]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[168,3.328,1643,5.374,2558,5.627,2559,6.478,2560,6.478]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[3,1.828,26,0.083,51,0.611,56,2.447,65,0.969,193,1.735,198,3.05,246,4.311,351,1.668,392,2.101,397,0.873,487,3.424,718,1.814,942,4.824,1044,2.93,1361,0.899,2556,5.247,2558,9.214]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[65,1.068,91,1.199,1187,3.392,2227,2.338,2350,2.683]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.619,47,1.024,55,2.087,270,1.338,1187,2.652,1700,2.452,1836,4.321,1837,2.566]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[21,1.09,22,1.221,26,0.063,45,0.752,47,1.731,51,0.289,63,3.429,65,1.187,91,1.332,95,2.24,130,1.504,142,1.815,193,1.439,225,1.296,227,1.449,270,1.287,332,1.229,351,1.383,357,2.19,390,1.378,397,0.724,423,1.233,799,1.449,858,2.292,1024,4.351,1049,1.895,1178,1.934,1361,0.745,2561,5.009]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.554,193,1.459,224,2.946,270,1.305,1178,1.961,1194,2.502,2068,2.787,2139,2.263,2274,2.193]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1881,3.883,2480,5.517,2481,5.517,2507,4.629,2562,5.517,2563,5.517]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[26,0.071,51,0.605,90,2.53,95,2.52,272,3.09,397,1.204,552,4.437,718,2.501,1361,1.239]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[21,1.345,157,1.983,776,2.208,1066,2.327,2298,3.464,2388,3.392]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2564,4.889,2565,3.777,2566,3.777,2567,3.777,2568,3.777]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[5,1.032,17,0.997,21,2.103,26,0.062,32,2.184,45,1.1,51,0.557,90,1.5,95,1.494,149,2.559,198,2.494,272,1.833,390,1.359,397,0.714,402,3.474,446,2.276,697,1.851,777,2.094,786,1.86,1066,3.289,1361,0.735,1597,3.014,2244,3.378,2298,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,2388,3.392]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[700,6.176,2391,7.122,2569,7.735]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[12,2.729,16,2.419,26,0.082,51,0.602,56,2.365,65,0.936,225,1.511,269,1.326,273,2.62,337,2.71,345,3.85,390,1.607,397,0.844,400,3.387,482,2.811,642,3.668,924,4.382,963,2.637,1361,0.869,1561,4.168,2392,4.382]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[5,0.871,21,1.345,22,1.507,157,1.983,1074,3.357,2388,3.392]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1854,5.976,1855,6.417,2570,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[5,1.072,21,2.397,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132,1692,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[850,0.477]],["title//docs/databases/postgresql/fedora-13/",[5,0.871,22,1.507,46,2.668,157,1.983,1074,3.357,2388,3.392]],["keywords//docs/databases/postgresql/fedora-13/",[1076,4.721,1170,5.191,2571,7.735]],["toc//docs/databases/postgresql/fedora-13/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[47,1.309,157,2.138,270,1.712,1178,2.572,2388,3.656]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[47,1.386,1537,4.139,1538,4.732,2572,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,270,1.874,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[47,1.309,157,2.138,1178,2.572,1837,3.282,2388,3.656]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[47,1.386,1537,4.139,2025,4.923,2572,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,272,2.706,351,2.014,397,1.054,552,3.885,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[5,0.761,40,2.375,157,1.733,206,3.342,235,2.506,2087,2.905,2088,3.854,2388,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,719,2.733,2388,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[65,0.991,157,1.983,193,1.775,305,3.147,2068,3.392,2388,3.392]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2068,3.87,2482,6.492,2493,6.124,2573,6.492]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[26,0.06,45,1.051,51,0.403,151,4.334,174,3.566,332,2.301,397,1.012,423,1.724,660,3.639,754,5.803,814,6.414,1361,1.042,2068,5.146]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[65,0.991,157,1.983,193,1.775,305,3.147,2068,3.392,2273,3.392]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2068,3.87,2318,5.85,2573,6.492,2574,7.051]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[26,0.06,45,1.051,51,0.403,151,4.334,174,3.566,332,2.301,397,1.012,423,1.724,660,3.639,754,5.803,814,6.414,1361,1.042,2068,5.146]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[850,0.477]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2575,6.275]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[91,1.166,2575,5.627,2576,6.478,2577,6.478,2578,6.478]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[26,0.078,90,2.794,194,7.107,397,1.33,1361,1.369,2575,7.99]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[21,1.345,157,1.983,274,3.825,776,2.208,1066,2.327,2298,3.464]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2579,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[5,1.032,17,0.997,21,2.103,26,0.062,32,2.184,45,1.1,51,0.557,90,1.5,95,1.494,149,2.559,198,2.494,272,1.833,390,1.359,397,0.714,402,3.474,446,2.276,697,1.851,777,2.094,786,1.86,1066,3.289,1361,0.735,1597,3.014,2244,3.378,2298,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[28,0.674,58,2.05,227,1.788,1201,3.673,2139,2.754,2274,2.668]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[17,0.983,26,0.092,51,0.499,54,1.717,59,2.825,94,1.89,137,2.76,142,1.765,149,1.701,198,3.661,310,2.17,371,3.476,392,1.694,397,0.704,718,1.463,777,2.065,799,1.409,958,5.79,1082,3.332,1201,6.804,1359,5.062,1361,0.725,1757,3.4]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[65,1.158,157,2.318,769,3.198,2388,3.965]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1799,5.154,1800,5.291,2580,7.051,2581,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[47,1.42,157,2.318,305,3.679,2388,3.965]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[47,1.177,337,2.78,713,2.976,2403,5.204,2493,5.204,2572,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[17,1.241,26,0.084,47,2.101,56,2.489,94,2.385,95,1.86,120,1.86,130,1.846,131,2.914,227,1.778,332,1.508,357,2.687,397,0.889,718,1.846,799,1.778,858,2.813,1049,2.326,1361,0.915,1701,4.612,1852,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[28,0.674,65,0.991,227,1.788,2139,2.754,2190,4.411,2274,2.668]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[227,2.478,2190,6.113]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[26,0.063,51,0.666,193,2.139,233,4.221,234,4.13,331,4.046,397,1.077,1361,1.108,2190,8.255]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2139,2.754,2274,2.668,2296,3.628]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[159,1.872,269,0.92,606,4.123,1313,3.07,2227,2.338]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[26,0.083,45,1.118,51,0.563,63,2.625,199,3.79,269,1.348,310,3.318,423,1.833,812,3.825,1313,4.5]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,606,3.825,1313,2.848,2139,2.754,2274,2.668]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,606,3.825,1313,2.848,2416,2.909,2417,2.868]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[26,0.087,51,0.587,199,3.086,269,1.098,310,3.543,397,1.15,812,4.084,1313,4.696,1361,1.183]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[28,0.628,227,1.668,763,4.113,1958,4.325,2061,4.113,2139,2.568,2274,2.488]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[28,0.706,2061,4.623,2062,5.627,2274,2.797,2507,5.005]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[5,0.897,26,0.075,45,0.956,51,0.58,187,3.189,295,2.935,310,2.838,340,2.33,397,0.921,410,4.545,596,4,718,1.913,1357,5.085,1361,0.948,2061,6.274,2063,5.284,2065,4.92,2066,4.274,2582,5.864]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[28,0.674,269,0.853,1313,2.848,2139,2.754,2274,2.668,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[28,0.607,55,2.232,269,0.769,1313,2.568,2274,2.406,2508,5.131,2584,4.45]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[5,0.931,26,0.056,45,0.992,51,0.381,55,2.647,142,2.394,199,2.565,214,3.424,225,2.332,269,0.912,310,2.944,351,1.825,397,0.955,423,1.627,722,3.255,1313,4.729,1361,0.983,1436,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[91,1.112,269,0.853,606,3.825,1313,2.848,2227,2.169,2350,2.489]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[55,2.825,269,0.973,1313,3.249,1318,4.732]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[26,0.084,45,1.142,51,0.571,199,2.953,269,1.05,310,3.39,397,1.1,423,1.873,812,3.908,1313,4.564,1361,1.132]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[850,0.477]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[5,0.761,47,1.061,49,2.303,329,3.77,507,4.052,799,1.562,2430,4.172,2585,4.69]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[47,0.856,49,1.858,269,0.601,337,2.021,341,1.916,508,5.321,713,2.163,2586,4.355,2587,4.355,2588,4.355]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[47,1.323,49,2.872,51,0.388,54,2.374,58,2.234,83,4.003,269,0.93,329,6.376,337,3.125,341,2.962,362,3.906,446,3.103,507,6.853,718,2.022,799,1.948,2036,4.702,2430,5.203,2585,5.849]],["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/",[91,1.037,905,3.676,2227,2.022,2350,2.321,2589,5.764,2590,5.764,2591,5.307]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2592,7.051,2593,7.051,2594,7.051,2595,5.447]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[26,0.081,51,0.412,63,2.518,94,2.773,130,2.146,199,2.773,227,2.067,332,1.753,397,1.033,718,2.146,799,2.749,1049,2.704,1361,1.063,2591,8.75]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[28,0.674,332,1.516,741,3.12,905,3.941,2139,2.754,2274,2.668]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[28,0.653,469,3.105,672,2.51,741,3.025,2507,4.629,2596,5.992]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[28,0.674,776,2.208,1194,3.045,2014,3.673,2139,2.754,2274,2.668]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[2014,3.851,2017,4.432,2018,4.861,2597,6.478,2598,5.965]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[26,0.061,45,1.072,340,2.613,392,3.305,397,1.033,423,1.759,944,5.099,963,3.226,992,4.557,1361,1.063,1638,4.422,1814,4.422,2014,6.346,2019,5.222]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[21,1.175,28,0.589,776,1.93,1066,2.033,1194,2.66,1593,2.85,2139,2.406,2274,2.331]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[28,0.607,776,1.991,1593,2.941,2274,2.406,2598,5.131,2599,5.573,2600,5.573]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[28,0.628,286,3.071,950,3.567,2306,4.602,2307,4.325,2416,2.713,2417,2.675]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1076,3.401,2311,4.84,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2601,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[28,0.589,286,2.877,950,3.342,1194,2.66,2139,2.406,2274,2.331,2306,4.312,2307,4.052]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1076,3.401,2311,4.84,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2602,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2139,2.406,2274,2.331]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[2001,5.509,2002,5.397,2603,6.853]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[2002,4.823,2603,6.124,2604,7.051,2605,6.492]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2603,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1403,5.993,2001,5.044,2002,6.548]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[769,2.868,1403,5.374,2605,5.965,2606,6.478,2607,6.478]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[26,0.095,397,1.33,718,2.762,1361,1.369,1403,7.631]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[28,0.589,776,1.93,1034,2.276,1194,2.66,1379,3.559,2139,2.406,2274,2.331,2359,4.312]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1596,4.276,2363,4.784,2364,4.784,2608,5.992,2609,5.992,2610,5.517]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[28,0.589,58,1.791,1194,2.66,1281,3.095,1986,3.21,1987,3.5,2139,2.406,2274,2.331]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2611,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[120,2.186,193,2.075,722,3.559,2612,6.275]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[270,1.665,687,5.627,690,3.901,1180,4.27,2612,5.627]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2612,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2139,2.568,2274,2.488]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.628,47,1.133,1178,2.225,1194,2.839,1837,2.839,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2613,5.627]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[12,2.245,17,0.97,26,0.081,28,0.782,35,3.753,45,0.721,47,0.944,51,0.549,72,2.932,90,1.459,95,1.454,177,4.731,225,1.243,272,1.783,340,1.757,390,1.322,397,0.695,423,1.183,499,1.701,552,2.559,1178,1.855,1361,0.715,1433,3.017,1792,4.173,1793,5.954,1837,2.367,2300,3.114,2387,3.605,2614,7.177,2615,4.804]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[28,0.523,199,1.861,269,0.662,270,1.232,392,1.667,1194,2.362,1258,2.659,2139,2.136,2274,2.07,2409,3.422]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1700,2.623,1869,3.812,1870,3.812,2412,4.073,2413,4.073,2616,5.573,2617,5.573]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[26,0.058,45,1.03,51,0.396,269,1.277,270,2.378,273,3.079,295,3.164,340,3.384,397,0.993,423,1.69,1258,3.808,1281,3.936,1361,1.022,1872,5.152,2066,4.608,2414,5.482]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[28,0.589,59,3.132,65,0.866,777,2.289,1194,2.66,1997,3.21,2139,2.406,2274,2.331]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1381,3.5,1997,3.312,1999,4.182,2000,4.182,2249,4.84,2250,4.623,2618,5.573]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[120,1.87,276,3.628,368,4.005,2290,6.651,2619,5.69]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2294,5.173,2620,6.478,2621,5.965,2622,6.478,2623,6.478]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[26,0.087,130,2.388,227,2.301,332,1.951,397,1.15,718,2.388,799,2.301,1049,3.009,1361,1.183,2290,6.143,2619,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[850,0.477]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[120,2.016,276,3.91,368,4.317,2290,5.146,2624,5.786]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2294,5.63,2621,6.492,2624,6.124,2625,7.051]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[26,0.088,130,2.443,227,2.354,332,1.996,397,1.176,718,2.443,799,2.354,1049,3.079,1361,1.211,2624,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2139,2.263,2274,2.193]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2139,2.406,2274,2.331]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[5,0.715,28,0.554,278,2.732,499,1.798,1194,2.502,2091,2.706,2092,3.474,2139,2.263,2274,2.193]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[499,2.122,840,3.763,2091,3.192,2093,4.784,2094,4.379,2095,3.223]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[28,0.589,65,0.866,193,1.551,305,2.75,1194,2.66,2068,2.963,2139,2.406,2274,2.331]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1881,4.199,2068,3.555,2507,5.005,2562,5.965,2563,5.965]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[26,0.056,45,0.992,51,0.381,95,2,151,4.09,174,3.365,332,2.212,357,2.889,397,0.955,423,1.627,660,3.499,754,5.58,814,6.167,1027,3.394,1361,0.983,2068,4.948]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[46,2.193,65,0.814,120,1.537,170,2.946,228,2.445,332,1.246,363,3.058,639,3.019,2626,3.924]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2074,5.173,2626,5.005,2627,6.478,2628,5.965,2629,5.965]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[5,1.263,26,0.076,51,0.516,665,4.021,1107,5.138,2626,8.487]],["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/",[5,0.761,21,1.175,22,1.316,28,0.589,1074,2.934,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1475,4.648,2096,5.447,2097,5.154,2630,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[5,1.146,21,2.474,26,0.069,51,0.596,54,2.868,351,2.247,397,1.176,1361,1.211]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[28,0.589,65,0.866,193,1.551,231,2.704,269,0.745,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[269,0.827,713,2.976,2009,4.379,2631,5.992,2632,5.992,2633,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[28,0.726,1044,3.231,1194,3.282,2139,2.968,2274,2.876]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2230,6.417,2231,6.417,2634,7.735]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[351,2.608,982,7.088,1044,4.581,2137,7.836,2451,8.204]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[28,0.628,120,1.744,391,3.735,720,3.518,1194,2.839,2139,2.568,2274,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2635,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[16,2.234,17,1.089,22,1.315,26,0.067,45,0.809,47,1.06,49,2.3,51,0.581,58,1.789,90,1.638,95,1.632,130,1.619,227,1.56,269,0.744,332,1.323,397,0.78,404,3.765,423,1.328,720,5.609,721,3.056,776,1.927,799,1.56,1049,2.041,1149,3.765,1206,2.873,1361,0.802,2258,4.684]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,0.761,22,1.316,28,0.589,46,2.331,1074,2.934,1194,2.66,2139,2.406,2274,2.331]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[46,2.587,1075,4.784,1076,3.657,1170,4.021,2636,5.992,2637,5.992]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[28,0.674,47,1.214,305,3.147,1194,3.045,2139,2.754,2274,2.668]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[28,0.607,47,1.095,337,2.586,713,2.768,2507,4.305,2613,4.84,2638,5.573]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[17,1.199,26,0.083,28,0.647,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[219,5.156,672,3.027,1686,6.275,2639,5.993]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2639,5.85,2640,6.492,2641,6.492,2642,6.492]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[4,1.113,5,0.806,15,2.45,26,0.069,51,0.33,72,2.186,83,2.129,170,2.077,174,2.912,219,2.556,225,0.927,235,1.662,303,2.618,326,6.883,345,2.361,351,1.579,363,2.157,403,2.556,639,2.129,672,3.415,702,3.111,771,1.793,907,2.102,925,3.298,929,2.86,1011,3.111,1441,3.298,1674,3.298,2012,3.298,2095,1.927,2441,3.298,2442,3.298,2478,5.266,2639,8.854,2641,3.298,2642,3.298,2643,3.582,2644,3.582,2645,3.582,2646,3.582,2647,3.582,2648,3.582,2649,3.582]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,0.812,22,1.405,46,2.488,174,2.935,228,2.774,660,2.237,2626,4.453]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2074,4.784,2626,4.629,2628,5.517,2629,5.517,2650,5.992,2651,5.992]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.263,26,0.076,51,0.516,665,4.021,1107,5.138,2626,8.487]],["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/",[91,1.037,776,2.06,1034,2.429,1379,3.799,2227,2.022,2350,2.321,2359,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1596,4.276,2362,5.517,2363,4.784,2364,4.784,2652,5.992,2653,5.992]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[120,2.016,131,3.159,169,3.959,486,3.159,2654,5.786]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1222,4.024,1641,4.159,1642,4.159,2654,4.524,2655,5.209,2656,4.796,2657,4.796,2658,5.209]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[3,2.418,17,1.888,26,0.047,38,3.395,116,4.067,131,2.638,228,2.678,278,2.993,295,3.683,313,4.442,454,4.615,694,2.964,722,3.937,1432,4.832,1826,6.174,1918,6.942,2421,4.175,2484,3.971,2523,5.123,2654,8.88,2659,5.123]],["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/",[28,0.589,58,1.791,63,1.903,1334,4.312,1390,3.947,1779,4.172,2416,2.542,2417,2.506]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1334,4.45,1390,4.073,1394,4.84,1779,4.305,2660,5.573,2661,5.573,2662,5.573]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[2,3.926,17,1.543,26,0.085,32,1.56,45,0.785,51,0.572,94,2.031,104,2.578,149,1.828,273,2.347,286,4.073,288,2.999,357,2.287,397,0.756,530,3.151,533,3.391,718,1.571,769,2.317,800,2.558,927,3.072,1361,0.779,1390,5.588,1402,4.818,1779,5.906,1783,4.818]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[58,2.05,91,1.112,227,1.788,1201,3.673,2227,2.169,2350,2.489]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[227,2.478,1201,5.091]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[26,0.09,51,0.52,54,1.844,59,3.035,94,2.031,137,2.966,142,1.896,198,3.86,371,3.734,392,1.82,397,0.756,718,1.571,777,2.218,799,1.514,958,6.104,1201,6.945,1359,5.337,1361,0.779,1757,3.653]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[28,0.628,47,1.133,270,1.481,1178,2.225,1194,2.839,2139,2.568,2274,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[47,1.386,1537,4.139,1538,4.732,2613,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[12,2.685,17,1.16,26,0.049,35,4.276,45,0.862,51,0.549,58,1.906,72,3.506,90,1.745,95,1.738,110,2.38,177,5.391,225,1.486,270,1.476,272,2.132,332,1.41,340,2.101,390,1.581,397,0.831,423,1.414,624,3.787,1178,2.218,1361,0.855,1433,3.608,1535,3.608]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[850,0.477]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[3,2.388,2663,7.265,2664,6.853]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[19,3.451,91,1.166,2595,5.005,2664,5.627,2665,6.478]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[4,2.177,26,0.08,28,0.763,91,1.26,119,2.143,157,2.247,159,1.968,278,3.767,596,4.398,1326,3.662,2139,3.12,2227,3.29,2274,3.023,2350,2.821,2664,8.144]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[850,0.477]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[21,1.573,22,1.761,31,4.35,32,2.153]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[19,4.121,21,1.684,24,6.176]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[3,0.686,5,1.206,12,1.827,16,3.545,17,1.876,19,5.595,21,1.646,22,1.494,24,4.894,25,5.655,40,2.267,120,1.183,187,2.58,231,3.069,245,5.975,351,1.079,453,6.961,906,2.533,943,1.969,1077,4.333,1535,1.424,1692,1.701,1958,2.933,2666,2.267,2667,6.914,2668,6.129,2669,3.909,2670,3.909,2671,2.267,2672,2.087,2673,2.267]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[850,0.477]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[91,1.112,119,1.892,120,1.87,2227,2.169,2296,3.628,2350,2.489]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[28,0.674,119,1.892,120,1.87,2296,3.628,2416,2.909,2417,2.868]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1139,3.954,2220,4.623,2221,4.623,2296,3.803,2297,4.861]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[21,1.174,26,0.095,126,2.7,130,2.347,227,1.56,269,0.744,270,1.386,310,2.403,332,1.323,351,1.489,397,0.78,799,1.56,1049,2.041,1066,2.031,1361,0.802,1362,3.555,1814,3.338,1849,2.82,2296,3.166,2298,3.023,2299,4.047,2300,3.495,2301,4.047,2302,4.047,2303,4.047,2304,4.047,2305,3.555]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[850,0.477]],["title//docs/websites/wikis/dokuwiki-engine/",[419,8.004,2674,8.004]],["keywords//docs/websites/wikis/dokuwiki-engine/",[270,1.988,2048,4.658,2675,7.735]],["toc//docs/websites/wikis/dokuwiki-engine/",[26,0.091,130,2.562,227,2.468,332,2.093,718,2.562,799,2.468,1049,3.228,2674,7.854]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[21,1.345,28,0.674,120,1.87,1849,3.232,2416,2.909,2417,2.868]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[21,1.535,28,0.769,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[3,2.078,26,0.079,51,0.533,90,2.085,142,2.488,269,0.948,295,3.164,332,1.685,334,4.794,340,2.511,642,4.312,697,2.573,1849,5.856,2676,6.322]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[120,2.016,193,1.913,270,1.712,722,3.282,2677,6.134]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[690,4.246,769,3.122,2678,7.051,2679,7.051]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[26,0.087,130,2.388,227,2.301,270,2.043,332,1.951,397,1.15,718,2.388,799,2.301,1049,3.009,1361,1.183,2677,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[850,0.477]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[159,2.218,2227,2.769,2305,5.201]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[67,3.561,140,3.561,159,1.684,1632,4.784,2305,3.95,2680,5.517]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[12,2.729,17,1.179,26,0.082,37,3.387,45,0.877,51,0.477,56,2.365,90,1.774,225,1.511,269,0.806,272,2.167,332,1.433,390,1.607,404,4.078,423,1.438,584,3.85,799,1.69,1535,3.668,1848,4.168,2305,7.551]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[850,0.477]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[91,1.3,1319,4.19,2227,2.535,2350,2.91]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[55,2.825,1319,4.089,1700,3.319,2042,5.291]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[17,1.309,22,1.581,26,0.086,45,0.973,54,2.286,63,2.286,198,3.275,199,3.944,397,0.938,423,1.597,718,1.948,1319,6.648,1361,0.965,2043,5.179]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[850,0.477]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[120,2.186,273,3.24,2681,6.652,2682,6.652]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1837,3.811,2681,7.122,2683,7.735]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[5,1.049,26,0.098,54,2.625,74,5.315,95,2.253,228,3.584,310,3.318,397,1.077,400,4.319,2682,8.992,2684,7.447]],["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/",[5,0.761,17,1.09,91,0.972,418,3.77,2051,3.559,2052,3.5,2227,1.895,2350,2.175]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[418,4.523,1028,4.735,1033,5.005,2051,4.27,2052,4.199]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[26,0.069,51,0.655,54,2.868,392,2.829,799,2.354,2051,5.363,2052,7.367]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[159,1.872,2001,4.651,2002,4.557,2003,4.065,2227,2.338]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[51,0.48,94,3.232,130,2.501,227,2.41,332,2.043,581,5.944,718,2.501,799,2.41,1049,3.151,2003,5.083]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[850,0.477]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[5,0.812,120,1.744,205,3.567,376,3.868,380,4.113,752,3.799,1760,3.943]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[4,2.014,376,4.348,752,4.27,937,4.523,2685,6.478]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[5,0.931,6,2.802,26,0.056,54,2.329,120,2,129,3.665,144,5.276,380,4.716,455,4.15,478,4.356,665,2.964,752,8.034,1760,4.52,2421,4.958,2686,6.608]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2047,5.546]],["keywords//docs/websites/wikis/twiki/",[476,4.246,1837,3.474,2047,4.042,2048,4.246]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[850,0.477]],["title//docs/applications/messaging/advanced-irssi-usage/",[74,5.631,83,4.69,2687,6.3]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1497,4.629,1757,4.183,1758,5.204,1759,5.204,2687,4.784,2688,5.517]],["toc//docs/applications/messaging/advanced-irssi-usage/",[5,1.202,137,4.834,262,3.931,283,7.409,397,1.233,1361,1.269,1488,6.811,1504,6.811,1597,5.206]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[5,0.938,659,5.526,1071,5.526,1497,5.146,2687,5.319]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1497,4.629,1757,4.183,1758,5.204,1759,5.204,2687,4.784,2688,5.517]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[6,2.037,26,0.041,51,0.495,54,1.693,59,2.786,74,3.429,110,1.99,120,2.172,137,2.723,149,1.678,174,3.655,208,3.985,478,4.731,672,3.007,683,5.954,694,2.559,718,1.443,990,4.173,1281,2.754,1757,5.011,1763,4.423,1765,6.608,2421,3.605,2687,8.144,2689,4.804,2690,4.804,2691,4.804,2692,4.804]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,0.812,40,2.535,159,1.62,199,2.237,264,3.1,719,2.733,2227,2.022]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[22,1.719,719,3.343,904,3.56,1052,4.823]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,40,2.375,199,2.096,264,2.905,719,2.56,2416,2.542,2417,2.506]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[5,0.761,49,2.303,58,1.791,91,0.972,269,0.745,341,2.375,2227,1.895,2350,2.175]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[5,0.716,31,3.06,49,3.191,58,1.685,63,1.791,65,0.815,226,3.02,241,3.293,269,0.701,341,2.235,372,3.41,395,2.733,397,0.735,596,3.191,628,3.145,649,3.548,675,3.627,722,4.375,1108,3.06,1361,0.756,1436,4.447,1658,3.35,2008,2.818,2056,7.008,2057,3.627,2058,3.714,2059,3.714,2060,3.714,2430,3.926]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[5,0.761,28,0.589,49,2.303,58,1.791,269,0.745,341,2.375,2416,2.542,2417,2.506]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[157,2.532,274,4.884,2054,4.33]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[157,1.788,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2486,4.45]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[850,0.477]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[28,0.787,2054,3.965,2416,3.4,2417,3.352]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[28,0.607,168,2.862,476,3.356,1837,2.745,2048,3.356,2054,3.058,2417,2.586]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[5,1.303,26,0.058,51,0.533,83,4.081,325,4.081,397,0.993,447,4.25,669,3.849,1361,1.022,1638,4.25,2054,6.61,2487,5.964]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,0.812,40,2.535,157,1.85,199,2.237,264,3.1,274,3.567,719,2.733]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,0.881,17,1.263,26,0.085,54,3.06,56,3.516,130,1.879,204,2.863,227,1.81,319,3.672,332,1.535,397,0.904,486,2.966,718,1.879,719,4.728,799,1.81,1049,2.367,1361,0.931,1852,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[5,0.812,49,2.458,58,1.912,159,1.62,269,0.796,341,2.535,2227,2.022]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[5,0.737,31,3.151,49,3.261,58,1.736,63,1.844,65,0.839,226,3.11,241,3.391,269,0.722,341,2.302,372,3.512,395,2.815,596,3.286,628,3.239,649,3.653,675,3.734,722,4.45,1108,3.151,1436,4.544,1658,3.449,2008,2.902,2056,7.092,2057,3.734,2058,3.825,2059,3.825,2060,3.825,2430,4.042]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[28,0.589,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2416,2.542,2417,2.506]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[26,0.065,51,0.672,225,1.968,390,2.094,397,1.1,628,4.709,777,3.226,1361,1.132,2079,6.72]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-mybb/",[2001,5.509,2002,5.397,2693,6.853]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[270,1.812,1700,3.319,2004,5.154,2693,6.124]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[26,0.071,130,2.501,227,2.41,332,2.043,397,1.204,718,2.501,799,2.41,1049,3.151,1361,1.239,2693,7.234]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[850,0.477]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[4,1.792,26,0.049,202,4.113,596,3.62,2001,4.024,2002,3.943,2694,5.006]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[270,1.812,1700,3.319,2004,5.154,2694,6.124]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[26,0.085,718,2.997,2694,8.67]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1039,3.82]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[47,1.309,157,2.138,270,1.712,274,4.123,1178,2.572]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[47,1.386,1537,4.139,1538,4.732,2695,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,270,1.874,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[47,1.309,157,2.138,274,4.123,1178,2.572,1837,3.282]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[47,1.386,1537,4.139,2025,4.923,2695,6.124]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[26,0.061,51,0.615,54,2.518,90,2.17,95,2.162,225,1.848,272,2.651,351,1.973,390,1.966,397,1.033,1178,3.669,1361,1.063,1562,5.222,1837,3.52]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[850,0.477]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[5,0.812,49,2.458,58,1.912,157,1.85,269,0.796,274,3.567,341,2.535]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[49,2.763,269,0.894,341,2.85,1713,4.27,2055,4.735]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[5,0.726,49,3.226,58,1.71,63,1.817,65,0.827,226,3.065,241,3.342,269,0.712,341,2.268,372,3.46,395,2.774,397,0.745,596,3.238,628,3.191,649,3.6,675,3.68,722,4.412,1108,3.105,1361,0.767,1436,4.495,1637,3.769,1658,3.399,2008,2.859,2056,7.05,2057,3.68,2058,3.769,2059,3.769,2060,3.769]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[21,1.255,28,0.628,776,2.06,1066,2.17,1593,3.042,2416,2.713,2417,2.675]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1596,4.623,2696,5.965,2697,6.478,2698,6.478,2699,6.478]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[5,0.677,17,0.97,21,1.87,26,0.041,32,2.139,45,1.077,51,0.588,54,1.693,90,2.18,95,1.454,149,2.507,272,1.783,351,1.327,390,1.322,397,0.695,402,3.403,446,2.214,697,1.8,698,2.113,777,2.037,786,1.809,1027,2.468,1066,3.235,1361,0.715,1593,2.535,1597,2.932,1598,3.512,2244,3.286]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[159,1.872,231,3.335,269,0.92,697,2.496,786,2.508]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[713,2.976,902,4.183,1036,4.784,1709,4.099,1710,5.517,2700,4.971]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[157,1.983,231,3.094,269,0.853,274,3.825,697,2.316,786,2.327]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[713,3.502,1709,4.823,1711,6.124,2486,5.63]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[850,0.477]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[28,0.628,231,2.886,269,0.796,697,2.16,786,2.17,2416,2.713,2417,2.675]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[28,0.607,697,2.088,1709,3.812,1715,5.131,1881,3.612,2497,4.45,2701,4.623]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[159,1.872,332,1.634,741,3.363,905,4.248,1034,2.808]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[159,1.982,469,3.654,672,2.954,741,3.56]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[5,0.659,26,0.04,51,0.405,75,3.265,89,3.199,128,4.911,182,3.65,187,2.341,228,2.251,262,4.333,332,1.726,336,2.937,390,1.287,439,2.816,469,3.645,539,4.293,672,2.947,741,4.268,771,3.522,786,2.648,1001,3.338,1002,3.338,1009,3.338,1105,4.558,1107,2.681,1925,3.418,1926,3.509]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[47,1.42,159,2.031,305,3.679,2227,2.535]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[47,1.177,159,2.368,337,2.78,713,2.976,2700,4.971]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1701,4.456,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[51,0.455,269,1.089,452,6.096]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[51,0.446,269,1.068,1713,5.099]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[3,2.302,12,3.556,16,4.831,532,5.878,642,4.778,1420,5.878,2307,5.709,2334,6.608,2556,6.608,2702,7.608,2703,7.608]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[120,2.186,269,0.997,763,5.156,2704,6.275]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[3,1.686,120,1.686,269,0.769,337,2.586,726,5.131,763,3.977,2704,4.84]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[17,2.074,1597,6.27]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[91,1.112,332,1.516,741,3.12,905,3.941,2227,2.169,2350,2.489]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[91,1.166,469,3.357,672,2.714,741,3.271,2350,2.609]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,4.312,539,4.209,672,2.889,741,3.482,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[850,0.477]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[28,0.674,332,1.516,741,3.12,905,3.941,2416,2.909,2417,2.868]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[28,0.653,469,3.105,672,2.51,741,3.025,2497,4.784,2701,4.971]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[5,0.642,26,0.039,51,0.397,75,3.18,89,3.116,128,4.814,182,3.592,187,2.281,228,2.192,262,4.276,332,1.692,336,2.861,390,1.253,397,0.659,439,2.743,469,3.573,539,4.209,672,2.889,741,4.201,771,3.453,786,2.597,1001,3.251,1002,3.251,1009,3.251,1105,4.469,1107,2.611,1361,0.678,1925,3.33,1926,3.418]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[47,1.309,91,1.199,305,3.392,2227,2.338,2350,2.683]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[47,1.177,91,1.078,337,2.78,713,2.976,2595,4.629,2705,5.517]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[17,1.199,26,0.083,45,0.891,47,2.069,56,2.405,91,1.069,94,2.305,95,1.797,120,1.797,130,1.783,131,2.816,227,1.718,332,1.457,357,2.596,397,0.859,423,1.462,718,1.783,799,1.718,858,2.718,1049,2.247,1361,0.884,1852,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[47,1.42,157,2.318,274,4.471,305,3.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[47,1.177,337,2.78,713,2.976,2403,5.204,2486,4.784,2695,5.204]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[17,1.241,26,0.084,47,2.101,56,2.489,94,2.385,95,1.86,120,1.86,130,1.846,131,2.914,227,1.778,332,1.508,357,2.687,397,0.889,718,1.846,799,1.778,858,2.813,1049,2.326,1361,0.915,1701,4.612,1852,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-centos-5/",[159,2.218,2070,4.472,2227,2.769]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[67,3.312,140,3.312,159,1.566,368,3.612,2070,3.158,2071,4.073,2706,5.573]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[28,0.674,47,1.214,474,3.232,1206,3.292,2416,2.909,2417,2.868]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2409,3.625,2707,3.409,2708,3.348]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[26,0.065,51,0.438,269,1.367,270,2.545,273,3.412,340,2.783,397,1.1,1258,4.219,1281,4.361,1361,1.132,1872,5.709,2414,6.075]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[5,0.761,40,2.375,159,1.518,206,3.342,235,2.506,2087,2.905,2088,3.854,2227,1.895]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[159,1.982,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[5,1.367,26,0.083,2087,6.2]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[5,0.715,28,0.554,40,2.234,206,3.144,235,2.357,2087,2.732,2088,3.625,2416,2.391,2417,2.357]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[28,0.769,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[5,1.12,26,0.087,295,3.664,340,2.909,397,1.15,799,2.301,1361,1.183,2066,5.337,2087,6.049]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[28,0.554,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2409,3.625,2416,2.391,2417,2.357]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[26,0.061,51,0.412,269,1.312,270,2.442,273,3.204,295,3.292,340,3.476,397,1.033,1258,3.962,1281,4.095,1361,1.063,1872,5.361,2066,4.795,2414,5.705]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[91,0.972,120,1.634,276,3.17,2227,1.895,2289,3.854,2290,4.172,2291,4.69,2350,2.175]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[276,3.803,2289,4.623,2293,5.627,2294,5.173,2709,6.478]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[26,0.085,51,0.448,130,2.335,227,2.25,332,1.908,397,1.124,718,2.335,799,2.25,1049,2.943,1361,1.157,2289,7.169]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[850,0.477]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[91,0.972,120,1.634,530,3.251,776,1.93,1760,3.694,2079,3.295,2227,1.895,2350,2.175]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[776,2.52,1066,2.655,2079,4.303,2080,5.447]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.661,225,1.887,390,2.007,397,1.054,423,1.795,628,4.514,777,3.092,1361,1.085,2079,6.583]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[21,1.255,91,1.037,776,2.06,1066,2.17,1593,3.042,2227,2.022,2350,2.321]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[91,1.166,776,2.315,1066,2.439,1593,3.419,2350,2.609]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[5,0.686,17,0.983,21,1.886,26,0.041,32,2.161,45,1.3,51,0.553,90,2.202,95,1.474,149,2.533,272,1.807,390,1.34,397,0.704,402,3.438,423,1.199,446,2.244,697,1.825,698,2.143,777,2.065,786,1.834,1027,2.502,1066,3.262,1361,0.725,1593,2.57,1597,2.973,1598,3.56,2244,3.332]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[5,0.715,40,2.234,91,0.914,206,3.144,235,2.357,2087,2.732,2088,3.625,2227,1.782,2350,2.046]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[91,1.269,904,3.56,2087,3.793,2089,5.032]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[5,1.296,26,0.078,397,1.33,1361,1.369,2087,6.003]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[28,0.787,2416,3.4,2417,3.352,2462,5.581]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[264,3.223,789,4.183,2462,4.629,2710,5.517,2711,7.757]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[28,0.674,269,0.853,1313,2.848,2416,2.909,2417,2.868,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[28,0.607,55,2.232,269,0.769,1313,2.568,2417,2.586,2497,4.45,2584,4.45]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[5,0.967,26,0.058,51,0.396,55,2.75,199,2.665,214,3.558,225,2.393,269,0.948,295,3.164,310,3.059,340,2.511,397,0.993,722,3.382,1313,4.264,1361,1.022,1436,4.081,2676,6.322]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[28,0.787,1061,4.848,2416,3.4,2417,3.352]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[264,3.223,789,4.183,1061,4.021,2710,5.517,2711,7.757]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[26,0.097,193,2.337,235,3.775,397,1.176,697,3.048,718,2.443,786,3.063,1061,5.46,1361,1.211]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[660,2.398,665,2.772,959,4.315,2087,3.324,2090,5.127,2712,5.69]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[174,2.652,269,0.719,665,2.336,1294,4.796,2076,3.807,2087,2.802,2090,4.321,2713,5.209]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[182,3.87,193,2.575,440,7.158,660,3.479,665,4.021,2090,7.437,2714,8.965]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[65,0.991,159,1.737,193,1.775,214,3.203,2008,3.427,2227,2.169]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[269,0.973,2008,3.91,2010,5.032,2715,7.051]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,4.901,273,3.735,340,3.046,400,4.83,402,3.949,765,5.49,1173,6.405]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[65,0.991,157,1.983,193,1.775,214,3.203,274,3.825,2008,3.427]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[269,0.973,2008,3.91,2010,5.032,2337,6.492]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,214,2.987,2008,3.196,2416,2.713,2417,2.675]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[269,0.973,2008,3.91,2009,5.154,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[159,1.872,269,0.92,1313,3.07,2227,2.338,2583,5.319]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[55,2.595,159,1.821,269,0.894,1313,2.985,2584,5.173]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,0.949,22,1.642,26,0.078,45,1.011,51,0.388,199,2.614,214,3.49,225,2.362,269,0.93,397,0.974,423,1.658,482,3.241,722,3.318,1313,4.775,1361,1.002,1436,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[159,1.737,1602,4.774,1823,4.774,2227,2.169,2484,4.411,2485,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[159,1.982,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[26,0.076,51,0.633,660,3.479,2485,8.682]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[159,1.518,199,2.096,269,0.745,270,1.387,392,1.878,1258,2.994,2227,1.895,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[26,0.069,45,1.221,51,0.469,269,1.427,270,2.657,397,1.176,423,2.003,1258,4.512,1361,1.211]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[157,1.733,199,2.096,269,0.745,270,1.387,274,3.342,392,1.878,1258,2.994,2409,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[26,0.073,51,0.491,269,1.471,270,2.737,397,1.233,1258,4.73,1361,1.269]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[850,0.477]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,0.761,40,2.375,91,0.972,199,2.096,264,2.905,719,2.56,2227,1.895,2350,2.175]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[22,1.719,904,3.56,1052,4.823,2466,5.63]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,0.949,17,1.359,26,0.057,54,3.219,56,3.699,130,2.022,204,3.082,227,1.948,319,3.953,332,1.652,397,0.974,486,3.193,719,4.33,799,1.948,1049,2.548,1361,1.002,1852,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[28,0.628,1602,4.453,1823,4.453,2416,2.713,2417,2.675,2484,4.113,2485,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[28,0.706,776,2.315,2017,4.432,2417,3.006,2484,4.623]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/clients/retrieve-email-using-getmail/",[5,1.018,313,5.768,776,2.581,2716,6.275]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[776,2.764,2716,6.719,2717,7.122]],["toc//docs/email/clients/retrieve-email-using-getmail/",[5,1.27,26,0.056,37,3.832,51,0.519,54,2.329,83,3.928,214,3.424,487,3.745,776,3.222,992,4.214,1008,6.085,1027,4.631,1658,4.356,1958,4.958,2716,8.913]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,4.781,1,4.213,3,1.744,8,4.602,1760,5.607,2718,5.764]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1,3.807,8,4.159,13,4.321,14,4.796,2719,5.209,2720,5.209,2721,5.209,2722,5.209]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,9.061,1,7.984,2,3.813,3,2.687,5,1.251,6,3.172,8,7.091,13,7.367,17,1.026,235,2.358,259,3.627,325,3.02,698,2.235,722,2.503,2189,4.216,2723,5.082,2724,5.082,2725,5.082]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2726,7.55,2727,8.004]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1700,3.641,2726,6.719,2728,7.735]],["toc//docs/development/frameworks/catalyst-and-modperl/",[26,0.069,32,1.685,45,0.848,51,0.466,63,1.993,65,0.906,142,2.048,199,2.194,204,2.587,225,1.462,269,1.422,310,2.519,351,1.561,390,1.556,397,0.817,722,2.785,1089,4.132,1361,0.841,1436,3.36,2672,5.205,2726,8.196,2727,7.443]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[91,1.037,120,1.744,193,1.655,722,2.839,2227,2.022,2350,2.321,2729,5.006]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[55,2.232,91,1.003,690,3.356,1180,3.674,2042,4.182,2729,4.84,2730,5.573]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[5,0.986,26,0.06,47,1.376,49,3.999,51,0.54,192,3.925,194,5.41,269,0.967,397,1.012,1361,1.042,2430,7.243,2585,8.144,2729,8.144]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[21,1.345,91,1.112,120,1.87,1849,3.232,2227,2.169,2350,2.489]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[21,1.535,91,1.269,243,5.032,1849,3.687]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[3,2.207,26,0.082,51,0.555,90,2.215,142,2.642,269,1.007,332,1.789,334,5.092,642,4.58,697,2.732,1849,5.999]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[91,1.037,286,3.071,950,3.567,2227,2.022,2306,4.602,2307,4.325,2350,2.321]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1076,3.401,2312,4.45,2313,4.45,2314,4.305,2315,4.45,2341,5.131,2731,5.573]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[6,2.518,7,3.486,26,0.071,45,0.891,51,0.342,120,1.797,130,1.783,182,2.564,203,2.446,262,2.737,272,2.204,295,2.737,397,0.859,423,1.462,647,4.239,672,2.488,799,1.718,847,4.341,935,4.239,950,6.517,1361,0.884,2316,6.468]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[850,0.477]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[332,1.516,665,2.772,950,3.825,1107,3.542,2316,4.774,2712,5.69]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2074,6.176,2732,7.735,2733,7.735]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[4,2.221,17,1.918,32,2.129,45,1.072,119,2.187,170,4.144,174,3.638,182,3.085,363,4.302,639,4.247,950,4.422,1107,6.523,2076,5.222]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[850,0.477]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[91,1.3,2227,2.535,2305,4.762,2350,2.91]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[67,3.561,91,1.078,140,3.561,1632,4.784,2305,3.95,2680,5.517]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[12,2.482,17,1.072,26,0.078,37,3.08,45,0.797,51,0.445,56,2.151,90,1.613,225,1.374,269,1.067,332,1.303,390,1.462,397,0.768,404,3.708,421,3.387,423,1.308,552,2.83,584,3.501,799,1.537,1361,0.79,1535,3.336,1848,3.791,2187,4.891,2305,7.548]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[91,1.037,1602,4.453,1823,4.453,2227,2.022,2350,2.321,2484,4.113,2485,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[91,1.269,776,2.52,2017,4.823,2484,5.032]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[26,0.073,51,0.614,397,1.233,660,3.31,1361,1.269,2485,8.491]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2734,4.784]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[58,1.791,91,0.972,495,3.391,499,1.912,2081,3.854,2082,2.963,2227,1.895,2350,2.175]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[91,1.166,499,2.294,672,2.714,2082,3.555,2095,3.485]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[3,1.927,17,1.286,26,0.054,45,0.956,51,0.506,58,2.112,87,3.835,225,1.648,272,2.363,397,0.921,422,3.46,423,1.568,799,1.843,1361,0.948,1414,5.794,2082,5.957,2085,4.447,2086,4.545]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-joomla/",[120,2.186,193,2.075,691,5.28,722,3.559]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[690,4.658,691,5.654,1180,5.099]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[26,0.087,51,0.458,94,3.086,130,2.388,227,2.301,332,1.951,691,7.449,718,2.388,799,2.301,1049,3.009]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[850,0.477]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[5,0.761,91,0.972,278,2.905,499,1.912,2091,2.877,2092,3.694,2227,1.895,2350,2.175]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[91,1.166,499,2.294,840,4.069,2091,3.451,2095,3.485]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[5,0.914,26,0.055,45,0.973,51,0.586,331,3.524,351,1.791,397,0.938,423,1.597,486,3.076,499,2.297,529,4.99,660,2.517,1361,0.965,2091,6.107,2095,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[91,1.3,2227,2.535,2350,2.91,2462,5.581]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[91,1.269,264,3.793,789,4.923,2462,5.447]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[26,0.083,51,0.429,130,2.236,193,2.139,227,2.155,332,1.827,397,1.077,697,2.79,718,2.236,786,2.804,799,2.155,1049,2.818,1361,1.108,1844,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[47,1.708,51,0.501]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[26,0.06,47,1.386,713,3.502,1451,6.492]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[3,1.474,33,1.135,47,0.957,51,0.553,65,0.781,110,3.003,143,4.23,175,2.859,195,3.763,196,3.56,197,3.4,201,4.23,225,1.26,235,2.26,337,2.26,345,3.211,362,2.825,390,1.995,402,2.309,446,3.341,532,5.602,592,3.059,660,1.89,695,2.344,698,2.143,718,1.463,962,2.595,1420,3.763,1693,4.23,2036,3.4,2066,3.269,2735,4.485,2736,4.485]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[91,1.3,1061,4.848,2227,2.535,2350,2.91]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[91,1.269,264,3.793,789,4.923,1061,4.732]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[26,0.097,193,2.337,235,3.775,397,1.176,697,3.048,718,2.443,786,3.063,1061,5.46,1361,1.211]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[120,2.016,131,3.159,357,2.912,459,5.526,2737,5.786]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1641,5.173,1642,5.173,2656,5.965,2737,5.627,2738,6.478]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[5,1.049,6,3.157,15,5.094,17,1.503,26,0.063,120,2.253,391,6.329,439,4.484,454,6.178,459,6.178,2659,6.857,2737,9.465]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[91,1.037,227,1.668,763,4.113,1958,4.325,2061,4.113,2227,2.022,2350,2.321]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[91,1.269,2061,5.032,2062,6.124,2350,2.84]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[5,0.931,26,0.087,45,0.992,51,0.591,187,3.309,310,2.944,397,0.955,410,4.716,596,4.15,718,1.984,1357,5.276,1361,0.983,2061,6.434,2063,5.482,2065,5.105,2582,6.085]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[63,2.546,199,2.804,2739,6.275,2740,6.275]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[269,0.827,2323,4.971,2739,5.204,2740,5.204,2741,5.992,2742,5.992]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[26,0.044,49,3.226,51,0.568,192,2.89,225,1.956,226,3.065,241,4.901,269,1.362,341,2.268,390,2.081,395,2.774,397,0.745,722,3.726,1089,5.528,1361,0.767,1436,4.495,2056,5.075,2057,5.397,2739,4.478,2740,4.478,2743,5.156]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[850,0.477]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[5,1.018,313,5.768,776,2.581,2744,6.275]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[72,3.954,777,2.747,2717,5.965,2744,5.627,2745,6.478]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[5,0.784,26,0.047,45,0.835,149,1.944,175,3.266,184,4.615,197,5.58,204,3.657,241,3.606,257,3.494,312,4.175,319,3.266,348,2.936,392,1.935,410,3.971,628,4.946,698,2.447,777,2.359,1918,4.832,2235,5.123,2744,8.88,2746,5.564,2747,5.123,2748,5.564,2749,5.564]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[850,0.477]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[17,1.247,21,1.345,228,2.974,660,2.398,665,2.772,1107,3.542]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2074,6.176,2750,7.735,2751,7.735]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[4,2.016,17,1.797,21,1.938,32,1.933,45,0.973,170,3.762,182,2.8,205,4.015,228,3.122,363,3.906,639,3.855,660,2.517,665,3.992,718,1.948,1107,6.27,2076,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/",[28,0.674,91,1.112,403,4.411,660,2.398,1369,5.69,1729,4.637]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[997,6.124,1729,5.291,2752,7.051,2753,7.051]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[5,1.263,51,0.516,149,3.132,415,6.132,487,5.081,997,7.786,1729,6.727]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[28,0.787,2070,4.094,2754,4.762,2755,4.762]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2756,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[28,0.787,2070,4.094,2416,3.4,2417,3.352]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[28,0.607,67,3.312,140,3.312,368,3.612,2070,3.158,2071,4.073,2757,5.573]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[26,0.063,45,1.118,51,0.563,65,1.194,193,2.139,225,1.926,270,1.914,390,2.049,422,4.046,545,4.826,718,2.236,818,5.094,2070,5.535]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[91,0.914,199,1.971,269,0.701,270,1.305,392,1.766,1258,2.817,2227,1.782,2350,2.046,2409,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1700,3.049,1869,4.432,1870,4.432,2412,4.735,2413,4.735]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.42,269,1.33,270,2.475,273,3.271,340,2.667,397,1.054,423,1.795,1258,4.044,1281,4.18,1361,1.085,1872,5.472,2414,5.823]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[59,3.343,65,0.924,91,1.037,777,2.444,1997,3.426,2227,2.022,2350,2.321]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1381,3.763,1997,3.561,1999,4.496,2000,4.496,2367,5.517,2595,4.629]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[26,0.063,45,1.118,51,0.563,58,2.47,90,2.262,95,2.253,272,2.763,278,4.006,397,1.077,423,1.833,777,4.141,1361,1.108,1997,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[850,0.477]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[28,0.628,59,3.343,65,0.924,777,2.444,1997,3.426,2416,2.713,2417,2.675]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1381,3.763,1997,3.561,1999,4.496,2000,4.496,2250,4.971,2497,4.784]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[26,0.066,51,0.579,58,2.579,90,2.362,95,2.353,272,2.885,278,4.183,397,1.124,777,4.259,1361,1.157,1997,4.622]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[47,1.309,159,1.872,1178,2.572,1837,3.282,2227,2.338]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[47,1.386,1537,4.139,2025,4.923,2758,6.492]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[26,0.065,45,1.142,51,0.571,90,2.311,95,2.302,225,1.968,272,2.823,390,2.094,423,1.873,1178,3.824,1562,5.561,1837,3.748]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[47,1.214,91,1.112,1178,2.386,1837,3.045,2227,2.169,2350,2.489]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[47,1.273,1537,3.803,2025,4.523,2355,5.627,2759,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[26,0.062,45,1.095,51,0.555,90,2.215,95,2.207,225,1.887,272,2.706,390,2.007,397,1.054,423,1.795,1178,3.719,1361,1.085,1562,5.331,1837,3.593]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[28,0.674,47,1.214,1178,2.386,1837,3.045,2416,2.909,2417,2.868]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[47,1.273,1537,3.803,2023,5.005,2025,4.523,2760,6.478]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[26,0.062,51,0.621,54,2.571,90,2.215,95,2.207,272,2.706,351,2.014,397,1.054,552,3.885,1178,2.816,1361,1.085,1837,3.593,2300,4.726,2387,5.472]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[120,2.016,169,3.959,357,2.912,358,5.319,2761,5.786]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1222,5.447,2657,6.492,2761,6.124,2762,7.051]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[5,0.595,6,1.792,15,2.892,17,0.853,26,0.055,31,2.545,32,1.26,33,0.985,34,0.995,51,0.375,65,0.678,120,2.404,149,1.477,169,2.512,193,1.214,203,1.741,214,2.19,245,2.951,269,0.899,295,4.89,303,3.09,337,1.962,416,2.58,486,2.004,495,2.655,543,3.375,660,2.528,907,2.481,959,2.951,1044,2.05,1082,2.892,1306,3.892,2761,8.846,2763,4.227]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[850,0.477]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[37,4.576,246,5.631,585,6.546]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[4,1.619,36,3.058,37,3.021,351,1.438,733,3.021,2764,5.209,2765,4.796,2766,5.209]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[5,1.379,35,3.159,37,6.479,54,2.129,83,3.591,149,2.11,197,4.218,392,2.101,584,5.585,645,4.054,727,5.562,890,4.667,1111,4.533,1848,4.311,1977,5.562,2747,7.802,2765,7.802]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[47,1.309,159,1.872,270,1.712,1178,2.572,2227,2.338]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[47,1.386,1537,4.139,1538,4.732,2758,6.492]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[26,0.065,51,0.634,54,2.682,90,2.311,95,2.302,270,1.955,272,2.823,351,2.101,552,4.053,1178,2.938,2300,4.931,2387,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[850,0.477]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[47,1.214,91,1.112,270,1.588,1178,2.386,2227,2.169,2350,2.489]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[47,1.386,1537,4.139,1538,4.732,2355,6.124]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[26,0.083,45,1.118,51,0.429,90,2.262,95,2.253,270,1.914,272,2.763,397,1.077,423,1.833,552,3.967,1178,2.875,1361,1.108,2300,4.826,2387,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[850,0.477]],["title//docs/tools-reference/linux-system-administration-basics/",[4,2.246,54,2.546,351,1.995,733,4.19]],["keywords//docs/tools-reference/linux-system-administration-basics/",[4,1.619,337,2.417,777,2.208,800,2.546,814,3.563,2767,5.209,2768,4.796,2769,5.209]],["toc//docs/tools-reference/linux-system-administration-basics/",[3,2.451,4,1.602,6,2.185,26,0.019,28,0.247,32,0.676,45,1.135,51,0.225,54,0.799,59,1.315,65,1.299,74,3.678,91,0.408,95,1.559,114,1.701,120,1.559,139,2.729,159,0.637,193,1.123,219,2.79,227,1.131,228,1.881,232,0.95,242,4.113,269,0.313,286,1.208,305,1.154,315,1.271,337,1.052,351,1.909,397,0.328,402,1.075,422,2.124,423,0.558,447,1.403,499,1.384,500,1.701,619,2.729,645,1.521,656,1.701,661,2.455,672,0.95,693,1.657,695,1.881,698,0.997,710,1.618,776,1.841,913,1.618,929,3.121,1027,1.164,1068,1.657,1080,1.701,1082,1.551,1089,1.657,1326,1.185,1409,2.674,1414,4.04,1462,1.969,1561,1.618,1630,1.969,1887,1.81,1901,1.969,2157,1.969,2421,1.701,2457,1.969,2468,1.969,2549,2.087,2639,1.881,2640,2.087,2770,2.087,2771,2.267]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[65,0.991,157,1.983,193,1.775,231,3.094,269,0.853,274,3.825]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[269,1.068,1881,5.013,2486,6.176]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[12,2.729,16,2.419,26,0.082,51,0.602,56,2.365,65,0.936,225,1.511,269,1.326,273,2.62,337,2.71,345,3.85,390,1.607,397,0.844,400,3.387,482,2.811,642,3.668,924,4.382,963,2.637,1361,0.869,1561,4.168,2392,4.382]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[850,0.477]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[91,1.3,2070,4.094,2227,2.535,2350,2.91]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[67,3.561,140,3.561,2070,3.396,2071,4.379,2772,5.992,2773,5.992]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[26,0.057,45,1.011,51,0.526,65,1.08,130,2.022,193,1.934,225,1.742,227,1.948,270,1.73,332,1.652,390,1.853,422,3.659,545,4.365,718,2.022,799,1.948,818,4.607,1049,2.548,2070,5.176]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[58,2.05,159,1.737,1281,3.542,1987,4.005,2026,3.628,2227,2.169]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[5,0.897,26,0.054,45,0.956,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,423,2.164,499,2.255,733,3.694,800,3.113,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[850,0.477]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[91,1.112,672,2.589,2227,2.169,2350,2.489,2506,5.69,2774,5.368]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[769,3.122,2117,5.63,2774,6.124,2775,7.051]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[5,0.986,26,0.09,51,0.403,130,2.103,227,2.026,315,3.925,332,1.718,397,1.012,718,2.103,799,2.026,1049,2.65,1361,1.042,2774,9.805]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/apache/apache-access-control/",[269,1.089,486,3.741,660,3.062]],["keywords//docs/web-servers/apache/apache-access-control/",[269,0.769,332,1.367,337,2.586,713,2.768,1565,4.84,2776,5.573,2777,5.573]],["toc//docs/web-servers/apache/apache-access-control/",[33,1.7,34,1.716,269,1.007,337,4.47,348,3.849,486,4.567,530,4.391,660,3.738,771,3.652,963,3.293,1082,4.989,1519,5.823,2440,6.715]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[235,3.091,269,0.92,339,4.065,486,3.159,660,2.585]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[269,0.894,332,1.59,337,3.006,713,3.217,1565,5.627]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[35,3.813,83,4.335,204,3.337,235,3.384,339,5.879,486,5.44,644,4.281,660,4.453,2241,6.715]],["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/",[91,1.112,120,1.87,391,4.005,720,3.772,2227,2.169,2350,2.489]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[720,3.657,2255,6.726,2256,4.784,2257,4.784,2778,5.992]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[17,1.011,22,1.221,26,0.083,47,1.731,49,2.136,51,0.648,54,1.766,58,1.661,90,1.522,95,1.516,130,1.504,227,1.449,269,0.692,332,1.229,351,1.383,397,0.724,404,3.497,718,1.504,720,5.375,721,2.839,776,1.79,799,1.449,1049,1.895,1149,3.497,1361,0.745]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,214,2.987,2008,3.196,2227,2.022,2350,2.321]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[269,0.973,1510,5.63,2008,3.91,2010,5.032]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,4.796,273,3.566,340,2.909,397,1.15,400,4.612,402,3.77,765,5.242,1173,6.219,1361,1.183]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[28,0.674,120,1.87,391,4.005,720,3.772,2416,2.909,2417,2.868]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[720,3.954,2255,5.173,2256,5.173,2257,5.173,2779,6.478]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[17,0.983,22,1.187,26,0.082,45,0.731,47,1.702,49,2.077,51,0.62,58,1.615,90,1.479,95,2.194,130,1.463,227,1.409,269,0.672,295,2.244,332,1.195,340,1.781,397,0.704,404,3.4,423,1.199,718,1.463,720,5.287,721,2.76,776,1.74,799,1.409,1049,1.843,1149,3.4,1361,0.725]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[17,1.247,157,1.983,159,1.737,786,2.327,805,3.772,806,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[157,2.079,159,1.821,1151,4.861,1152,5.173,2780,5.965]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[17,1.857,33,2.144,34,2.165,786,3.464,805,5.614,806,4.725]],["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/",[17,1.247,28,0.674,91,1.112,786,2.327,805,3.772,806,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[28,0.706,91,1.166,1151,4.861,1152,5.173,2780,5.965]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[17,1.857,33,2.144,34,2.165,786,3.464,805,5.614,806,4.725]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[629,4.754,697,2.496,786,2.508,805,4.065,806,3.422]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1151,4.861,1152,5.173,2781,6.478,2782,5.627,2783,6.478]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[17,1.764,26,0.074,61,3.895,62,3.845,786,3.292,805,5.335,806,4.49,1298,6.239]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[850,0.477]],["title//docs/platform/linode-beginners-guide/",[119,2.415,1171,5.921,1539,7.265]],["keywords//docs/platform/linode-beginners-guide/",[1677,5.63,2768,6.492,2784,7.051,2785,7.051]],["toc//docs/platform/linode-beginners-guide/",[3,1.18,4,1.212,19,2.077,26,0.033,40,2.691,45,0.585,48,2.57,54,1.374,59,2.261,90,1.184,94,2.374,119,3.502,182,1.683,203,1.606,225,1.009,275,2.667,305,1.986,330,3.113,486,1.849,499,1.381,538,3.012,597,3.113,644,3.591,663,3.683,698,1.715,710,2.783,754,2.413,776,1.393,799,1.128,966,3.387,1043,2.667,1044,1.891,1788,3.012,1845,5.313,1884,3.387,2136,3.387,2451,3.387,2786,3.899,2787,3.899,2788,6.117,2789,3.899,2790,3.899]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[697,2.707,786,2.72,1149,5.044,1150,4.537]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1298,5.032,1709,4.823,2782,6.124,2791,7.051]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[17,1.722,26,0.073,395,4.589,786,4.011,806,4.381,962,4.544,1154,5.955,1298,6.088]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[850,0.477]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[5,0.871,214,3.203,402,2.93,552,3.292,2792,6.18,2793,5.69]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1298,5.032,1709,4.823,2782,6.124,2793,6.492]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[26,0.083,771,4.86,786,3.655,1298,6.927]],["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/",[3,1.87,170,3.584,363,3.721,639,3.673,1043,4.227,2794,5.368]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1727,4.784,1729,4.496,2794,5.204,2795,5.992,2796,5.992,2797,5.992]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[5,1.072,26,0.065,182,4.276,260,5.878,262,3.506,397,1.1,665,3.412,963,3.435,1149,5.312,1361,1.132,2794,8.602,2798,7.608]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[850,0.477]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[3,1.87,28,0.674,98,4.517,1043,4.227,1726,4.774,2416,2.909]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1726,4.629,1727,4.784,1728,5.517,1729,4.496,1730,5.517,1731,5.517]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[5,1.146,26,0.069,182,3.512,260,6.285,262,3.749,397,1.176,665,3.649,963,3.673,1361,1.211,1726,7.988]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[91,1.199,776,2.38,2014,3.959,2227,2.338,2350,2.683]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[2014,3.851,2017,4.432,2018,4.861,2799,6.478,2800,5.627]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[26,0.061,45,1.072,340,2.613,392,3.305,397,1.033,423,1.759,944,5.099,963,3.226,992,4.557,1361,1.063,1638,4.422,1814,4.422,2014,6.346,2019,5.222]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[28,0.726,776,2.38,2014,3.959,2754,4.391,2755,4.391]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[2014,3.851,2017,4.432,2018,4.861,2800,5.627,2801,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[26,0.054,45,1.319,51,0.367,95,1.927,340,2.33,357,2.784,392,3.057,397,0.921,423,1.568,718,1.913,944,4.545,963,2.876,992,4.062,1361,0.948,1638,3.942,1814,3.942,2014,5.983,2019,4.655,2065,4.92]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[28,0.726,776,2.38,2014,3.959,2416,3.136,2417,3.091]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[2014,3.851,2017,4.432,2018,4.861,2800,5.627,2802,6.478]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[26,0.054,45,1.319,51,0.367,95,1.927,340,2.33,357,2.784,392,3.057,397,0.921,423,1.568,718,1.913,944,4.545,963,2.876,992,4.062,1361,0.948,1638,3.942,1814,3.942,2014,5.983,2019,4.655,2065,4.92]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2803,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1989,3.223,1990,3.223,1991,3.169,1992,3.169,2026,2.87,2030,3.669,2031,3.223,2804,4.889,2805,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[5,0.851,26,0.051,51,0.348,54,2.129,149,2.11,204,2.765,225,1.563,295,2.784,319,3.546,340,2.21,362,3.503,390,1.662,397,0.873,423,1.487,499,2.139,733,3.503,800,2.953,1361,0.899,2026,5.744,2032,3.25,2035,4.533,2036,4.218,2037,3.915,2066,4.054]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[51,0.455,54,2.781,269,1.089]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[51,0.373,269,0.894,337,3.006,713,3.217,1996,5.965]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[3,2.997,17,1.536,51,0.438,54,2.682,91,1.369,225,1.968,245,5.312,269,1.05,390,2.094,693,5.561,972,6.075,981,6.312,2468,6.608]],["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/",[269,0.997,400,4.19,924,5.421,2392,5.421]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[269,0.827,400,3.475,645,4.021,1713,3.95,2392,4.496,2806,5.517]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[33,1.854,34,1.871,358,6.349,400,5.91,645,5.337,765,5.242,924,7.646,1447,7.322,2392,5.967,2409,5.675]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[15,4.942,219,5.156,269,0.997,800,3.531]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[269,0.973,800,3.446,1713,4.648,2807,7.051]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[51,0.36,197,4.368,225,1.618,269,1.487,302,4.995,340,2.288,390,1.721,392,2.176,545,4.054,698,3.819,800,4.243,1027,5.122,1420,4.833,1928,5.76,2736,5.76,2808,6.256,2809,6.256]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,231,2.886,269,0.796,2416,2.713,2417,2.675]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[269,0.827,713,2.976,2009,4.379,2810,5.992,2811,5.992,2812,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[16,2.546,26,0.084,51,0.569,54,2.167,56,2.489,225,1.59,231,3.078,235,2.852,269,1.364,273,3.847,315,3.445,351,1.697,390,1.691,397,0.889,482,2.958,695,2.958,1361,0.915,1490,4.291]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2416,2.713,2417,2.675]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1066,1.64,1381,2.735,1943,3.268,2298,2.441,2565,3.365,2566,3.365,2567,3.365,2568,3.365,2696,4.01,2813,4.355,2814,4.01]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[28,0.628,58,1.912,1281,3.304,1986,3.426,1987,3.735,2416,2.713,2417,2.675]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2815,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[28,0.726,65,1.068,769,2.949,2416,3.136,2417,3.091]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1666,5.005,2111,5.005,2701,5.374,2816,6.478,2817,6.478]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,235,2.582,269,0.768,270,1.43,351,1.536,390,2.199,695,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2416,2.713,2417,2.675]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1475,4.648,2096,5.447,2097,5.154,2818,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2416,2.713,2417,2.675]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[46,2.587,1076,3.657,1170,4.021,2819,5.992,2820,5.992,2821,5.992]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[17,2.013,22,2.116,26,0.074,45,0.939,46,4.305,51,0.36,149,2.185,228,3.011,237,4.054,332,1.535,397,0.904,660,2.428,963,2.824,1077,3.586,1081,4.124,1361,0.931,2103,4.833,2104,4.833]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[28,0.628,65,0.924,193,1.655,305,2.935,2068,3.163,2416,2.713,2417,2.675]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1881,4.199,2068,3.555,2701,5.374,2822,6.478,2823,6.478]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[26,0.056,45,0.992,51,0.381,95,2,151,4.09,174,3.365,332,2.212,357,2.889,397,0.955,423,1.627,660,3.499,754,5.58,814,6.167,1027,3.394,1361,0.983,2068,4.948]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[850,0.477]],["title//docs/networking/ssh/using-sshfs-on-linux/",[5,0.938,12,3.113,228,3.206,654,4.471,2824,5.146]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2824,5.447,2825,7.051,2826,7.051,2827,7.051]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[3,1.963,4,2.016,5,0.914,12,3.031,26,0.055,32,1.933,45,0.973,61,2.89,62,2.853,95,1.963,187,3.248,205,4.015,228,4.284,262,2.989,351,1.791,654,6.821,665,2.909,718,1.948,2824,5.011]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[65,1.158,159,2.031,769,3.198,2227,2.535]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[159,2.174,769,3.424,2700,6.417]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[850,0.477]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[3,2.186,174,3.679,1043,4.942,2828,6.275]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1727,5.173,1729,4.861,2828,5.627,2829,6.478,2830,6.478]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[5,1.263,26,0.076,397,1.296,1149,6.259,1361,1.334,2828,9.542]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[26,0.049,65,0.924,91,1.037,2032,3.1,2105,3.383,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2831,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2707,3.868,2708,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2832,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[26,0.049,28,0.628,65,0.924,2032,3.1,2105,3.383,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2032,3.223,2105,3.517,2107,4.496,2108,4.496,2109,4.496,2833,5.992]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[5,1.006,26,0.061,51,0.412,65,1.146,295,3.292,296,5.099,340,2.613,397,1.033,499,2.53,694,3.806,799,2.067,1361,1.063,2032,3.843,2037,4.63,2105,5.578,2110,5.361]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2707,3.868,2708,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1989,3.434,1990,3.434,1991,3.376,1992,3.376,2026,3.058,2030,3.908,2031,3.434,2834,5.209]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[5,0.897,26,0.054,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,397,0.921,423,1.568,499,2.255,733,3.694,800,3.113,1361,0.948,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[28,0.628,58,1.912,1281,3.304,1987,3.735,2026,3.383,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1989,3.434,1990,3.434,1991,3.376,1992,3.376,2026,3.058,2030,3.908,2031,3.434,2835,5.209]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[5,0.851,26,0.051,51,0.348,54,2.129,149,2.11,204,2.765,225,1.563,295,2.784,319,3.546,340,2.21,362,3.503,390,1.662,397,0.873,423,1.487,499,2.139,733,3.503,800,2.953,1361,0.899,2026,5.744,2032,3.25,2035,4.533,2036,4.218,2037,3.915,2066,4.054]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[65,1.068,193,1.913,269,0.92,400,3.863,645,4.471]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[269,0.894,400,3.757,645,4.348,2704,5.627,2806,5.965]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[33,2.09,34,2.11,400,5.199,645,7.373,1420,6.926,2836,8.965]],["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/",[58,1.912,91,1.037,1281,3.304,1987,3.735,2026,3.383,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1989,3.674,1990,3.674,1991,3.612,1992,3.612,2026,3.271,2030,4.182,2031,3.674]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[5,0.897,26,0.054,51,0.367,54,2.245,149,2.225,204,2.915,225,1.648,319,3.739,362,3.694,390,1.753,397,0.921,423,1.568,499,2.255,733,3.694,800,3.113,1361,0.948,2026,5.909,2032,3.426,2035,4.779,2036,4.447,2037,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[91,1.112,2001,4.315,2002,4.227,2003,3.772,2227,2.169,2350,2.489]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[270,1.812,1700,3.319,2003,4.303,2004,5.154]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[51,0.469,94,3.157,130,2.443,227,2.354,332,1.996,397,1.176,581,5.806,799,2.354,1049,3.079,1361,1.211,2003,4.965]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[26,0.061,28,0.787,92,3.531,2837,6.275]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2048,4.658,2837,6.719,2838,7.735]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[21,1.857,51,0.614,94,3.31,581,6.088,1044,4.137,2837,10.09]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[26,0.067,232,3.306,689,4.816]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[270,1.432,689,3.401,690,3.356,1180,3.674,1700,2.623,1720,5.131,2042,4.182]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[5,1.173,26,0.071,45,1.25,51,0.48,94,3.232,232,3.49,689,7.013,718,2.501]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[65,1.158,157,2.318,769,3.198,2839,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1799,5.154,1800,5.291,2840,7.051,2841,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[65,1.158,157,2.318,274,4.471,769,3.198]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1799,5.154,1800,5.291,2842,7.051,2843,7.051]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,269,1.103,270,1.43,351,1.536,390,2.199,545,3.606]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[850,0.477]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[91,1.199,269,0.92,1182,3.734,2227,2.338,2350,2.683]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[29,3.59,2346,5.85,2347,6.492,2348,6.492]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[5,0.986,26,0.08,29,3.566,45,1.051,90,2.127,110,2.9,269,0.967,325,4.162,340,2.561,397,1.012,423,1.724,1182,5.925,1361,1.042,1409,4.79,2349,5.254]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[26,0.049,28,0.628,269,0.796,1182,3.231,1194,2.839,2707,3.868,2708,3.799]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[29,3.59,1985,5.63,2346,5.85,2844,7.051]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[5,1.027,26,0.082,29,3.714,90,2.215,110,3.021,269,1.007,325,4.335,340,2.667,397,1.054,1182,6.046,1361,1.085,1409,4.989,2349,5.472]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2707,3.868,2708,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2845,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[5,0.938,174,3.392,182,2.876,665,2.988,2076,4.869]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2076,5.654,2846,7.735,2847,7.735]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[26,0.062,182,3.148,199,2.83,225,1.887,228,4.636,362,4.229,392,2.536,665,4.32,959,5.092,1107,4.18,1108,4.391,1474,5.823,2076,7.041]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[28,0.628,58,1.912,1281,3.304,1986,3.426,1987,3.735,2754,3.799,2755,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1986,2.906,1988,3.574,1989,3.223,1990,3.223,1991,3.169,1992,3.169,2031,3.223,2329,4.056,2848,4.889]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[58,1.912,91,1.037,1281,3.304,1986,3.426,1987,3.735,2227,2.022,2350,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1986,3.096,1988,3.807,1989,3.434,1990,3.434,1991,3.376,1992,3.376,2031,3.434,2518,4.796]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[26,0.088,45,1.221,51,0.469,87,4.899,338,3.916,397,1.176,718,2.443,1361,1.211,1986,6.146]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[28,0.628,776,2.06,1034,2.429,1379,3.799,2359,4.602,2707,3.868,2708,3.799]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1596,5.032,2363,5.63,2364,5.63,2610,6.492]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[3,2.253,26,0.083,95,2.253,130,2.236,227,2.155,332,1.827,351,2.056,397,1.077,718,2.933,799,2.155,1049,2.818,1361,1.108,1379,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[21,1.255,28,0.628,776,2.06,1066,2.17,2298,3.231,2754,3.799,2755,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2814,4.502]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[5,1.065,17,1.041,21,2.147,26,0.044,32,2.254,45,1.135,51,0.568,90,1.566,95,1.56,149,2.642,272,1.913,390,1.419,397,0.745,402,3.586,446,2.376,697,1.932,777,2.186,786,1.941,1066,3.372,1361,0.767,1597,3.147,2244,3.527,2298,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[5,1.018,19,3.849,1960,6.652,2824,5.581]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2824,5.447,2849,7.051,2850,7.051,2851,7.051]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[19,5.806,25,5.199,36,4.371,51,0.628,65,1.194,364,5.315,654,4.998,660,2.89,665,3.34,2824,5.753,2852,7.447]],["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/",[28,0.628,65,0.924,193,1.655,305,2.935,2068,3.163,2754,3.799,2755,3.799]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1881,4.57,2068,3.87,2853,7.051,2854,6.124]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[26,0.058,51,0.396,95,2.078,151,4.25,174,3.496,332,2.27,357,3.001,397,0.993,660,3.591,754,5.727,814,6.329,1027,3.527,1361,1.022,2068,5.078]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[159,1.737,776,2.208,1034,2.605,1379,4.074,2227,2.169,2359,4.935]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1596,5.032,2363,5.63,2364,5.63,2855,7.051]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[3,2.353,26,0.085,95,2.353,130,2.335,227,2.25,332,1.908,351,2.147,718,3.016,799,2.25,1049,2.943,1379,5.126]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[850,0.477]],["title//docs/databases/postgresql/centos-5/",[5,0.871,22,1.507,46,2.668,159,1.737,1074,3.357,2227,2.169]],["keywords//docs/databases/postgresql/centos-5/",[46,3.044,1076,4.303,1170,4.732,2856,7.051]],["toc//docs/databases/postgresql/centos-5/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/centos-5/",[850,0.477]],["title//docs/databases/postgresql/fedora-12/",[5,0.871,22,1.507,46,2.668,157,1.983,274,3.825,1074,3.357]],["keywords//docs/databases/postgresql/fedora-12/",[1076,4.721,1170,5.191,2857,7.735]],["toc//docs/databases/postgresql/fedora-12/",[17,2.071,22,2.198,26,0.056,45,0.992,46,4.43,51,0.381,149,2.308,228,3.18,237,4.283,332,1.621,397,0.955,660,2.565,963,2.984,1077,3.788,1081,4.356,1361,0.983]],["deprecated//docs/databases/postgresql/fedora-12/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2707,3.868,2708,3.799]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[46,3.044,1076,4.303,1170,4.732,2858,6.492]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[17,2.177,22,1.778,26,0.062,46,4.657,51,0.42,149,2.548,397,1.393,1077,4.18,1081,4.807,1361,1.433]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,0.812,22,1.405,28,0.628,46,2.488,1074,3.131,2754,3.799,2755,3.799]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[46,3.044,1076,4.303,1170,4.732,2858,6.492]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[17,2.222,22,1.855,26,0.065,46,4.754,51,0.438,149,2.658,397,1.1,1077,4.361,1081,5.015,1361,1.132]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[21,1.255,91,1.037,776,2.06,1066,2.17,2227,2.022,2298,3.231,2350,2.321]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1066,1.841,1381,3.071,1943,3.669,2298,2.741,2565,3.777,2566,3.777,2567,3.777,2568,3.777,2859,4.889]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[5,1.043,17,1.011,21,2.118,26,0.043,32,2.207,45,1.322,51,0.561,90,1.522,95,1.516,149,2.586,272,1.859,390,1.378,397,0.724,402,3.51,423,1.233,446,2.308,697,1.877,777,2.124,786,1.886,1066,3.316,1361,0.745,1597,3.057,2244,3.427,2298,2.808]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[91,1.112,269,0.853,1313,2.848,2227,2.169,2350,2.489,2583,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[55,2.825,269,0.973,1313,3.249,2584,5.63]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[5,0.986,26,0.06,45,1.051,51,0.403,55,2.805,199,2.718,214,3.629,225,2.425,269,0.967,310,3.12,397,1.012,423,1.724,722,3.45,1313,4.32,1361,1.042,1436,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[28,0.674,269,0.853,1313,2.848,2583,4.935,2707,4.148,2708,4.074]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[28,0.607,55,2.232,269,0.769,1313,2.568,2584,4.45,2708,3.674,2860,5.573]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[5,0.967,26,0.079,51,0.396,55,2.75,94,2.665,199,2.665,214,3.558,225,2.393,269,0.948,310,3.059,397,0.993,722,3.382,1313,4.822,1361,1.022,1436,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,305,2.935,2068,3.163,2227,2.022,2350,2.321]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1881,4.57,2068,3.87,2595,5.447,2705,6.492]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[26,0.062,51,0.42,151,4.514,174,3.714,332,2.363,397,1.054,660,3.738,754,5.962,814,6.589,1361,1.085,2068,5.286]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[104,3.045,131,2.93,132,4.637,392,2.149,927,3.628,1582,4.411]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[861,5.291,862,5.032,1583,5.63,1584,5.63]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[28,1.057,91,1.745,157,1.906,159,2.353,232,2.488,293,3.164,570,3.078,1034,3.529,1194,2.926,1256,4.341,1572,3.576,1716,2.564,1811,3.051,2139,2.646,2211,2.858,2227,2.084,2274,2.564,2861,5.939,2862,5.939,2863,5.939,2864,5.939]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[850,0.477]],["title//docs/tools-reference/tools/introduction-to-rsync/",[175,5.102,1955,6.941]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[19,2.969,23,4.84,906,3.612,1527,4.84,1955,4.45,2663,5.131,2865,5.573]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[446,3.931,959,5.955,1955,9.276,2866,8.53,2867,8.53,2868,8.53,2869,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,0.812,22,1.405,46,2.488,91,1.037,1074,3.131,2227,2.022,2350,2.321]],["keywords//docs/databases/postgresql/debian-5-lenny/",[46,3.044,1076,4.303,1170,4.732,2870,7.051]],["toc//docs/databases/postgresql/debian-5-lenny/",[17,2.092,22,1.642,26,0.078,45,1.011,46,4.474,51,0.388,149,2.353,237,4.365,397,0.974,963,3.041,1077,3.86,1081,4.439,1361,1.002,2103,5.203,2104,5.203]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[850,0.477]],["title//docs/development/version-control/how-to-configure-git/",[110,3.268,168,4.053,491,5.201]],["keywords//docs/development/version-control/how-to-configure-git/",[28,0.502,91,0.829,168,2.366,1326,2.409,1521,2.851,1640,4.002,1641,3.679,1642,3.679,1643,3.822,2871,4.607]],["toc//docs/development/version-control/how-to-configure-git/",[6,3.157,51,0.429,54,2.625,168,5.597,228,3.584,278,4.006,295,4.5,446,4.5,459,6.178,625,5.443,1547,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/",[4,2.071,26,0.057,168,3.422,170,3.863,174,3.392]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[168,3.328,1640,5.627,1641,5.173,1642,5.173,1643,5.374]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[26,0.078,110,3.81,168,6.17,175,5.4]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[4,2.453,175,4.632,614,6.096]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[4,2.405,1826,5.976,2872,7.735]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[3,1.789,4,2.827,12,4.25,26,0.071,38,2.279,65,0.599,110,2.448,114,2.802,119,1.809,130,1.121,131,1.77,149,1.304,182,1.612,208,3.098,294,2.885,332,0.916,392,1.299,393,2.42,416,3.608,446,1.721,455,2.345,491,2.461,530,2.248,597,2.981,661,2.345,701,2.885,710,2.665,799,2.631,981,3.098,1361,0.556,1473,3.243,1486,3.243,1693,3.243,1793,4.904,1826,2.885,1975,3.243,2149,3.438,2873,5.911,2874,3.734,2875,3.734,2876,3.734]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[4,2.453,149,2.756,1082,5.397]],["keywords//docs/tools-reference/linux-users-and-groups/",[4,1.863,149,2.093,416,3.657,2550,4.971,2877,5.992,2878,5.992]],["toc//docs/tools-reference/linux-users-and-groups/",[3,2.827,6,1.957,12,3.92,17,1.406,38,2.817,149,3.263,204,2.112,218,3.097,303,3.373,320,3.042,345,3.042,401,2.779,416,6.119,446,3.209,455,4.374,487,2.616,591,3.829,865,4.009,989,4.249,1026,3.685,1082,6.39,1282,3.373,2550,5.777,2554,4.249,2879,4.615]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[351,2.179,2142,6.853,2143,7.265]],["keywords//docs/security/recovering-from-a-system-compromise/",[2880,7.051,2881,8.673,2882,6.492]],["toc//docs/security/recovering-from-a-system-compromise/",[5,0.931,40,4.514,51,0.381,119,2.76,263,4.83,644,3.879,663,3.979,906,5.843,1484,4.716,1829,5.482,2141,7.479,2500,6.085,2735,6.085,2883,6.608,2884,6.608,2885,6.608]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[91,1.037,231,2.886,269,0.796,697,2.16,786,2.17,2227,2.022,2350,2.321]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1709,4.823,1714,6.492,1881,4.57,2595,5.447]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[5,1.272,17,1.056,26,0.045,51,0.44,269,1.247,395,2.815,397,0.756,697,3.384,771,2.62,786,4.292,805,5.513,806,5.428,962,2.788,1150,3.286,1154,3.653,1361,0.779]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[47,1.309,159,1.872,474,3.483,1206,3.549,2227,2.338]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1207,4.246,1522,4.923,1523,4.364,2886,7.051]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[47,1.214,91,1.112,474,3.232,1206,3.292,2227,2.169,2350,2.489]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1207,4.246,1522,4.923,1523,4.364,1920,6.124]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[16,2.844,21,1.495,26,0.089,32,2.046,45,1.389,47,1.818,56,2.781,95,2.078,272,2.548,397,0.993,423,1.69,482,3.305,721,3.891,1361,1.022,1852,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[28,0.628,47,1.133,474,3.014,1194,2.839,1206,3.071,2707,3.868,2708,3.799]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1207,4.246,1522,4.923,1523,4.364,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[28,0.674,47,1.214,474,3.232,1206,3.292,2754,4.074,2755,4.074]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1207,4.658,1522,5.4,1523,4.787]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[16,2.959,21,1.555,26,0.091,32,2.129,45,1.072,47,1.867,56,2.894,95,2.162,272,2.651,397,1.033,482,3.439,721,4.049,1361,1.063,1852,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[26,0.057,119,2.039,129,3.694,131,3.159,1532,5.786]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[920,6.417,921,6.719,1040,7.122]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[17,1.309,32,1.933,45,0.973,51,0.374,110,2.687,119,2.725,254,3.303,390,2.797,533,4.204,596,6.383,658,3.855,665,2.909,906,4.204,1287,8.196,1534,4.867,2887,6.486]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[850,0.477]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[28,0.674,269,0.853,474,3.232,1206,3.292,2754,4.074,2755,4.074]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1207,4.246,1523,4.364,1921,5.291,2317,5.447]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[26,0.066,51,0.448,63,2.741,204,3.559,214,4.03,224,4.51,269,1.073,310,3.465,446,3.583,721,5.693,930,5.429,1206,4.143]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[28,0.589,65,0.866,193,1.551,231,2.704,269,0.745,1194,2.66,2707,3.624,2708,3.559]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[269,0.827,713,2.976,2009,4.379,2888,5.992,2889,5.992,2890,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[16,2.546,26,0.084,51,0.569,54,2.167,56,2.489,225,1.59,231,3.078,235,2.852,269,1.364,273,3.847,315,3.445,351,1.697,390,1.691,397,0.889,482,2.958,695,2.958,1361,0.915,1490,4.291]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[5,0.871,21,1.345,22,1.507,159,1.737,1074,3.357,2227,2.169]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1475,5.099,2097,5.654,2891,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[5,1.072,21,2.539,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[5,0.871,21,1.345,22,1.507,157,1.983,274,3.825,1074,3.357]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1854,5.976,1855,6.417,2892,7.735]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[5,1.072,21,2.539,26,0.065,51,0.571,351,2.101,397,1.1,961,4.709,962,4.053,963,3.435,1361,1.132]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2707,3.868,2708,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1475,4.648,2096,5.447,2097,5.154,2893,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[5,0.812,21,1.255,22,1.405,28,0.628,1074,3.131,2754,3.799,2755,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1475,4.648,2096,5.447,2097,5.154,2894,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[5,0.812,21,1.255,22,1.405,91,1.037,1074,3.131,2227,2.022,2350,2.321]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1475,4.648,2097,5.154,2382,6.492,2895,7.051]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[5,1.231,21,2.557,26,0.074,51,0.504,397,1.264,1361,1.301]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[850,0.477]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[51,0.332,91,1.037,338,2.774,632,3.799,2227,2.022,2350,2.321,2896,5.764]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[672,2.954,2897,7.051,2898,7.051,2899,7.051]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[26,0.078,51,0.53,338,5.371,397,1.33,1361,1.369]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[850,0.477]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[26,0.053,28,0.674,269,0.853,1182,3.464,2754,4.074,2755,4.074]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[29,3.051,1182,3.358,2346,4.971,2854,5.204,2900,5.992,2901,5.992]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[5,1.12,26,0.087,29,4.049,90,2.415,269,1.098,397,1.15,1182,5.712,1361,1.183,1409,5.439,2349,5.967]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[65,0.991,91,1.112,193,1.775,1173,3.772,2227,2.169,2350,2.489]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[713,3.217,2902,6.478,2903,6.478,2904,6.478,2905,6.478]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[26,0.048,45,0.848,51,0.466,56,2.289,91,1.017,195,4.367,196,4.132,202,4.034,204,2.587,225,2.441,390,2.597,392,1.966,397,0.817,423,1.392,669,4.531,1173,4.934,1176,7.021,1177,4.91,1361,0.841,1519,4.514,1785,4.69,1923,5.205]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[219,5.156,422,3.925,672,3.027,800,3.531]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2881,9.217,2882,7.122]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[21,1.338,45,1.287,219,6.121,231,3.078,263,4.493,269,0.849,422,6.108,672,2.575,800,3.004,848,4.493,982,4.612,1010,5.66,1686,5.339,1814,3.804,2085,5.988,2189,5.099,2906,6.147,2907,6.147]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[5,1.018,119,2.211,393,4.682,926,5.156]],["keywords//docs/networking/using-the-linode-shell-lish/",[393,4.57,926,5.032,937,4.923,1136,5.154]],["toc//docs/networking/using-the-linode-shell-lish/",[5,1.139,6,2.397,83,3.36,182,2.44,193,1.624,199,2.194,203,2.328,231,2.83,262,2.605,345,3.726,376,3.794,440,4.514,740,4.242,756,4.91,926,7.35,1105,3.664,2908,5.653,2909,5.653,2910,5.653,2911,5.653,2912,5.653,2913,5.653,2914,5.653,2915,5.653,2916,8.084]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[5,1.224,376,5.834]],["keywords//docs/networking/ssh/using-the-terminal/",[2917,7.735,2918,7.735,2919,7.735]],["toc//docs/networking/ssh/using-the-terminal/",[3,2.718,6,3.394,12,4.198,17,1.327,38,2.611,118,3.053,120,1.295,139,2.987,192,2.398,208,5.454,227,1.238,246,3.053,262,1.972,283,3.716,351,1.815,376,2.871,401,3.958,452,3.305,530,2.576,595,3.549,619,6.272,620,3.416,645,2.871,752,2.82,906,2.773,938,3.939,964,3.21,1113,3.716,1760,2.927,1826,3.305,1891,3.549,2421,3.21,2920,4.279,2921,4.279,2922,4.279]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[175,4.632,498,4.884,499,2.794]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1719,5.85,2923,7.051,2924,7.051,2925,7.051]],["toc//docs/networking/dns/dns-records-an-introduction/",[3,1.797,65,0.952,402,2.816,446,2.737,497,4.927,498,5.182,499,3.728,695,4.029,787,5.468,1248,4.588,1271,4.588,1272,4.742,1414,3.915,1736,4.927,2092,4.063,2770,5.468,2926,5.939,2927,5.468,2928,5.939,2929,5.939,2930,5.939,2931,5.939]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[65,0.991,159,1.737,193,1.775,231,3.094,269,0.853,2227,2.169]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[269,1.068,1881,5.013,2700,6.417]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[12,2.56,16,2.269,26,0.079,45,0.822,51,0.585,56,2.218,65,0.878,225,1.417,235,2.541,269,1.28,273,2.456,337,2.541,345,3.61,390,1.507,397,0.792,400,3.176,423,1.348,482,2.636,642,3.44,695,2.636,924,4.11,963,2.473,1361,0.815,1561,3.909,2392,4.11]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[850,0.477]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[65,0.924,91,1.037,193,1.655,231,2.886,269,0.796,2227,2.022,2350,2.321]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[713,2.976,1510,4.784,1924,5.204,2932,5.992,2933,5.992,2934,5.992]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[16,2.638,26,0.086,45,0.956,51,0.506,56,2.579,225,1.648,231,3.189,235,2.955,269,1.213,273,3.943,315,3.57,390,1.753,397,0.921,423,1.568,482,3.065,695,3.065,1361,0.948,1490,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[850,0.477]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[120,2.016,193,1.913,722,3.282,1248,5.146,2935,6.134]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2936,8.566,2937,8.566]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[17,1.309,22,1.581,26,0.076,94,2.517,130,1.948,227,1.877,273,2.909,332,1.592,446,2.989,482,3.122,629,4.629,799,1.877,1049,2.454,1248,7.852,2935,9.358,2938,6.486,2939,6.486]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[850,0.477]],["title//docs/networking/dns/dns-manager-overview/",[120,2.388,499,2.794,898,5.767]],["keywords//docs/networking/dns/dns-manager-overview/",[1501,5.131,1502,4.84,1672,5.131,1673,5.131,1719,4.623,1840,4.623,2940,5.573]],["toc//docs/networking/dns/dns-manager-overview/",[5,0.568,32,1.202,38,2.462,45,1.158,61,1.797,62,1.774,65,0.647,110,1.671,114,3.026,120,1.22,203,2.587,242,2.707,286,2.149,397,0.583,401,2.429,402,5.116,491,2.659,498,3.887,499,2.731,500,3.026,624,2.659,661,2.533,695,3.023,800,1.971,1027,2.072,1095,2.948,1414,6.877,1571,3.503,1839,3.346,1840,3.346,1927,3.503,1959,3.503,2927,3.714,2941,4.033,2942,4.033]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[65,1.068,91,1.199,769,2.949,2227,2.338,2350,2.683]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1514,6.417,1905,6.719,2943,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[21,2.275,22,2.017,26,0.089,32,1.741,45,1.242,51,0.636,65,1.327,193,1.678,225,1.511,235,2.71,269,0.806,270,1.501,390,1.607,423,1.438,695,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[28,0.674,65,0.991,769,2.736,1194,3.045,2707,4.148,2708,4.074]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1663,7.122,2944,7.735,2945,7.735]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[21,2.258,22,1.994,26,0.088,32,1.712,45,0.862,51,0.675,65,1.311,193,1.65,225,2.115,269,0.793,270,1.476,351,1.586,390,2.25]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[850,0.477]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[28,0.726,65,1.068,769,2.949,2754,4.391,2755,4.391]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1666,5.976,2111,5.976,2854,6.719]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[21,2.225,22,1.948,26,0.087,32,1.658,45,0.835,51,0.669,65,1.281,193,1.598,225,2.067,235,2.582,269,0.768,270,1.43,351,1.536,390,2.199,695,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[850,0.477]],["title//docs/tools-reference/linux-package-management/",[4,2.453,95,2.388,120,2.388]],["keywords//docs/tools-reference/linux-package-management/",[294,4.024,701,4.024,1835,4.796,2946,5.209,2947,4.796,2948,4.796,2949,5.209,2950,4.796]],["toc//docs/tools-reference/linux-package-management/",[4,1.709,5,0.774,6,1.445,16,1.412,28,0.372,51,0.196,83,2.026,91,0.613,95,3.334,120,2.956,130,1.024,157,1.094,159,0.958,198,1.721,228,1.64,278,1.833,294,4.246,351,0.941,397,0.493,415,2.331,446,2.533,614,2.633,701,2.633,930,2.38,1326,2.874,1361,0.507,1521,2.11,1675,2.721,1676,2.721,1704,2.96,2947,5.06,2948,3.138,2950,6.359,2951,3.408,2952,3.408,2953,3.408,2954,3.408,2955,3.408,2956,3.408,2957,3.408,2958,3.408,2959,3.408,2960,3.408,2961,5.496,2962,3.408,2963,3.408]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":570,"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":2436,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2027,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":1017,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2139,"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":2285,"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":2306,"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":2839,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2191,"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":2140,"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":274,"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":1716,"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":2388,"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":2861,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2273,"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":784,"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":1574,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2232,"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":92,"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":845,"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":2864,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":932,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1778,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1878,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":231,"title":{"/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/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/monitor-remote-hosts-with-icinga/":{},"/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":797,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1815,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1315,"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":1797,"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":1742,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2165,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1455,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":796,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":588,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":152,"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":1748,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2615,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1202,"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":1750,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1752,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2227,"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":1034,"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":1806,"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":1743,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1792,"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":1795,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1850,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":232,"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":289,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1193,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":271,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1787,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":293,"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":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":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2159,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":93,"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":2754,"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":2416,"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":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2961,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1885,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2472,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":2013,"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":660,"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":1565,"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":2877,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2475,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":487,"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":918,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1564,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1234,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":536,"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":848,"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":694,"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":203,"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":2184,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2124,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":204,"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":1671,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":663,"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/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":87,"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":814,"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":1733,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2712,"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":1302,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":733,"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":2103,"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":1280,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":83,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":921,"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":1041,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1645,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":150,"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":2051,"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":{}}],["ahead",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1359,"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":1003,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":726,"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":1597,"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":1434,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":563,"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":566,"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":1132,"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":1133,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1135,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":628,"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":1388,"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":2299,"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":2275,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1368,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1282,"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":804,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analysi",{"_index":146,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["analyt",{"_index":140,"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":1289,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":702,"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":1295,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1819,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":745,"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":1467,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1464,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1468,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1466,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1465,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1469,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1471,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2590,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":505,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":124,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":269,"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":1882,"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":1816,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1515,"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":933,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2932,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2331,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":699,"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":1509,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2933,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2332,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2569,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":433,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2890,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1189,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1511,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2812,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2934,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2633,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2406,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2715,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1510,"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":2337,"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":2009,"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":2333,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1709,"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":2346,"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":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2537,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2393,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2540,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2397,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1982,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1183,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2542,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2631,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2404,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2810,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2811,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2632,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2405,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1924,"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":901,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":802,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":180,"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":1857,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":224,"title":{"/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/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/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":891,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1301,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":623,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":638,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1372,"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":2281,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":199,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/project-management/install-farmos/":{},"/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":280,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":701,"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":2949,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1835,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2951,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1326,"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":1907,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1908,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1910,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1912,"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":1911,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":496,"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":0,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":215,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1055,"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":1058,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2896,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2897,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":837,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":810,"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":2513,"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":2509,"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":1957,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1437,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":888,"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":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1390,"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":1391,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2661,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1395,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2660,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":367,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":408,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2909,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":144,"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":186,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1656,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1484,"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":2440,"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":348,"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":1279,"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":2081,"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":1897,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":209,"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":1560,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":36,"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":325,"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/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":825,"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":531,"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":127,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2927,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":31,"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":23,"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":1683,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":1637,"title":{},"keywords":{},"toc":{"/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":2441,"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":1440,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2561,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":19,"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":2174,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":507,"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":1366,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2154,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":235,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":877,"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":1216,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":54,"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/tools-reference/tools/divide-files-with-split/":{},"/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":2737,"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":2606,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":306,"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":308,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":33,"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/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":34,"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/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/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":1545,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1539,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2686,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":801,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1635,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":430,"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":195,"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":1459,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1690,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1112,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":600,"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":1046,"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":562,"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":283,"title":{},"keywords":{},"toc":{"/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":1793,"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":1225,"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":1227,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":373,"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":915,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":418,"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":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2798,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1546,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":872,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2118,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":658,"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":2182,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":528,"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":954,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2158,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":778,"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":1343,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1337,"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":459,"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":360,"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":2451,"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":2270,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":609,"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":440,"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":1213,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":1435,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2290,"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":2622,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2294,"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":198,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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/web-servers/caddy/compile-caddy-from-source/":{},"/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":842,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1454,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2604,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1155,"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":1452,"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":2646,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2883,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2723,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2738,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1154,"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":497,"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":840,"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":2061,"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":712,"title":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":723,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2575,"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":2576,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":781,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2359,"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":2277,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2163,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1829,"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":2280,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1754,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1310,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1130,"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":782,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2710,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2056,"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":900,"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":2726,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1373,"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":1519,"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":481,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":163,"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":406,"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":{}}],["center",{"_index":2788,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cento",{"_index":159,"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":2700,"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":1036,"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":902,"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":1413,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1410,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1411,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1412,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1311,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2247,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":677,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_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/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":1718,"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":1258,"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":1156,"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":455,"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":1763,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1764,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1639,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1497,"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":1991,"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":1589,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1592,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1027,"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":1927,"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":1540,"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":1543,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1554,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1542,"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":1555,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1556,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1541,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2068,"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":2075,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2481,"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":2482,"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":2574,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2853,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2480,"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":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 ubuntu 9.10",{"_index":2822,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2823,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2563,"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":2573,"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":2069,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":213,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2550,"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":1409,"title":{},"keywords":{},"toc":{"/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":2878,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":436,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":1007,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":443,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2237,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":2014,"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":2212,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2213,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2597,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":2015,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2021,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":503,"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":2748,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1331,"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":1810,"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":318,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":458,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":492,"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":187,"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":2064,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1261,"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":1095,"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":1443,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":267,"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":1476,"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":1338,"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":857,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":830,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":834,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":341,"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":690,"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":2770,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":358,"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":2484,"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":1990,"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":1054,"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":1078,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1104,"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/":{}},"deprecated":{}}],["come",{"_index":2528,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":6,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":965,"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":1859,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":878,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":73,"title":{},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":976,"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":1150,"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":2791,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":454,"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":15,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2424,"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/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2429,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":905,"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":655,"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":858,"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":859,"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":118,"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":537,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":296,"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":166,"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":1,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["compromis",{"_index":2143,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":548,"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":614,"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":2470,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":151,"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":2456,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1447,"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":1809,"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":542,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":590,"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":2148,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":51,"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/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/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":760,"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":1330,"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":736,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1993,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":344,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1772,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":424,"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":2809,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2488,"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":2489,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2494,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2492,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2491,"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":2496,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2495,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2490,"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":1283,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":182,"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":2516,"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":2515,"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":2867,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1535,"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":937,"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":1147,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1974,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":164,"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":220,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":722,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":687,"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":1707,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1720,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1180,"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":2679,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":155,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1712,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":486,"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":2220,"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":1116,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2503,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1544,"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":1843,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":906,"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":958,"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":939,"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":2161,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2162,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":519,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2087,"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":1888,"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":1237,"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":1241,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1242,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2298,"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":2790,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2681,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1139,"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":1142,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2683,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2682,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1887,"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":96,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2786,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":384,"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":17,"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/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2126,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":910,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":686,"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":1296,"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":1828,"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":1019,"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":37,"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":2766,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2764,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2765,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":249,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptocurr",{"_index":11,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["cryptsetup",{"_index":1934,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1240,"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":1243,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1244,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1245,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1153,"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":1023,"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":60,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":114,"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":129,"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":1040,"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":920,"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":2276,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1037,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":862,"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":1517,"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":861,"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":2215,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1741,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2794,"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":1761,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":410,"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":1402,"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":2852,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2956,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":44,"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":40,"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/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":839,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":69,"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":22,"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":342,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":343,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["dataset",{"_index":522,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2041,"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":890,"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":2502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1341,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1342,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1606,"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":2667,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2656,"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":849,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1251,"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":817,"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":1803,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":91,"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":2705,"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":2343,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2366,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2336,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2214,"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":2365,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1652,"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":1904,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":896,"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":1512,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1524,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2367,"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":2898,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":897,"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":1513,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1905,"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":2943,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2595,"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":2799,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2342,"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":1949,"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":2321,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1651,"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":2773,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":210,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1973,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":2006,"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":1698,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":450,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":818,"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":605,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":599,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":478,"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":1553,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":201,"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":2808,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2058,"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":218,"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":793,"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":485,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2279,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":1005,"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":310,"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":63,"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":737,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1995,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1121,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1446,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":98,"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":1965,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2643,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":534,"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":378,"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":2189,"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":276,"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":2578,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":50,"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":1686,"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":929,"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":1788,"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":1001,"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":2454,"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":1487,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1420,"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":2222,"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":2672,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":12,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":421,"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":2180,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2690,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2725,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":2001,"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":2605,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":254,"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":470,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":131,"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":2658,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1817,"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":2230,"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":{}}],["divid",{"_index":70,"title":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"keywords":{},"toc":{},"deprecated":{}}],["django",{"_index":1313,"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":1272,"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":973,"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":248,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":250,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1274,"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":499,"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":2130,"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":2957,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1502,"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":2370,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1501,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2923,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2925,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":162,"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":165,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":167,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":429,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":680,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":773,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":851,"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":2088,"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":1893,"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":2954,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2675,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2674,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2116,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":402,"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":1719,"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":2940,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1578,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1579,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1576,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2203,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2204,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2198,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2206,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2205,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1593,"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":1948,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2246,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1600,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1595,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2243,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2464,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1931,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2787,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":94,"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":1616,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2948,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1137,"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":2043,"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":567,"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":1442,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1791,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":689,"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":1181,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1706,"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":2135,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":889,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":244,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":589,"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":1970,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1640,"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":2057,"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":2413,"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":2728,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1062,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":579,"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":111,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":977,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1300,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2920,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":789,"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":286,"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":620,"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":2671,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2485,"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":2026,"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":2030,"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":2028,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2029,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2805,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2834,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2835,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2804,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":138,"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":156,"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":136,"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":753,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2774,"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":2775,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":573,"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":574,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":776,"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":2800,"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":2018,"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":1165,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2962,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":340,"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":2177,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":247,"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/websites/forums/install-and-run-askbot-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":1235,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2433,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2430,"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":419,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1177,"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":986,"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":730,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2050,"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":453,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":727,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":192,"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":456,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1701,"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":1438,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2034,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1349,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":316,"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":2745,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2714,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2952,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2958,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1901,"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":2955,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":668,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2197,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":183,"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":1569,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1277,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1057,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":35,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":321,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1841,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":865,"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":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1997,"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":2618,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2415,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2248,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":625,"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":990,"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":1120,"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":622,"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":2156,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1969,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1473,"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":475,"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":2307,"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":653,"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":477,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":259,"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/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["extern",{"_index":1658,"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":1232,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":2,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/game-servers/install-teamspeak/":{},"/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/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["face",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":795,"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":461,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1362,"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":1365,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1148,"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":1370,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1705,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1039,"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":106,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farm",{"_index":767,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["farmo",{"_index":766,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1178,"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":2759,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":207,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2023,"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":1619,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1617,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2300,"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":2614,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":652,"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":2621,"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":2037,"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":157,"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":2841,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2840,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2486,"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":2843,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2842,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2493,"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":2581,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2580,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2483,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2318,"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":2419,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2418,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2234,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2233,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1880,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1879,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1798,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2253,"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":2391,"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":1687,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1033,"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":1498,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2744,"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":2746,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":3,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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/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/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2722,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":748,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2552,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":952,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1339,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":511,"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":2865,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":364,"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":941,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1726,"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":992,"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":404,"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":661,"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":2546,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2443,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2908,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1287,"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":338,"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":1325,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1096,"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":809,"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":994,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":874,"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":876,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":875,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2060,"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":982,"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":2963,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":189,"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":2612,"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":411,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2603,"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":2624,"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":1693,"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":2295,"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":334,"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":2885,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":685,"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":2166,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":591,"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":1425,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1603,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":2002,"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":2004,"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":2122,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1108,"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":1890,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2059,"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":2607,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1255,"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":1064,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2323,"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":2911,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1212,"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":2688,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1779,"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":2662,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1358,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2692,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2585,"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":2588,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1682,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1352,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1042,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1727,"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":641,"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":1110,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":179,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":319,"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":2352,"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":302,"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":1407,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2677,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2090,"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":631,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1099,"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":1059,"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":1247,"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":1669,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1667,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1668,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":740,"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":634,"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":1662,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":771,"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":1354,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2619,"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":1521,"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":1900,"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":147,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["get",{"_index":491,"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":2716,"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":1956,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":870,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":417,"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":735,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2558,"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":168,"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":909,"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":1221,"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":2871,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2487,"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":1643,"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":564,"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":2505,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1660,"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":960,"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":312,"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":1167,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1097,"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":1067,"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":1760,"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/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/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"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":2685,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2719,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2720,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu-tar",{"_index":10,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":84,"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":85,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1378,"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":86,"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":1940,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1939,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":772,"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":1657,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1776,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1777,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1106,"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":1775,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1781,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":935,"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":1125,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":1013,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1308,"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":1898,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1474,"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":1307,"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":715,"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":717,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":714,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":913,"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":1739,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1082,"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":2017,"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":927,"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":1518,"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":1038,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":431,"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":2297,"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":1171,"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":190,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":13,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":1636,"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":559,"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":815,"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":819,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1933,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":317,"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":399,"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":181,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":506,"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":2469,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":998,"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":2100,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2708,"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":1070,"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":161,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hdf",{"_index":561,"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":993,"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":261,"title":{},"keywords":{},"toc":{"/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":608,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":610,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2239,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1812,"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":1002,"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":222,"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":490,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":966,"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":2172,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":942,"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":275,"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":1773,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2655,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":758,"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":764,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1098,"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":509,"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":666,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2691,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1826,"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":821,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":847,"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":172,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":225,"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/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":1678,"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":423,"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":725,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1567,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1568,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1045,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":912,"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":556,"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":2531,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1224,"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":1458,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":908,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1163,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":642,"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":382,"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":1630,"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":337,"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/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":2776,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1876,"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":2377,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1713,"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":1892,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":775,"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":279,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2157,"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":229,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/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":{}}],["icinga2",{"_index":230,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{},"deprecated":{}}],["icmp",{"_index":2012,"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":97,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":925,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1649,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2054,"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":2379,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2284,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2378,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2283,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":480,"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":1943,"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":1262,"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":1723,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2349,"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":624,"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":2644,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":808,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":328,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2743,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":143,"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":1424,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2673,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":397,"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":128,"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":1852,"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":439,"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":366,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2523,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":389,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":26,"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/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":1134,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1141,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":881,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":734,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1223,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":716,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":30,"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":1188,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":779,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1481,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1477,"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":2098,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1203,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1681,"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":1851,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1680,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1051,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":856,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":970,"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":1421,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":885,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":829,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1994,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":553,"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":1215,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1380,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1769,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1356,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":529,"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":1987,"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":1988,"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":1131,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2137,"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":543,"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":751,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":674,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":678,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":331,"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":659,"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":43,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2131,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":1012,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2325,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":175,"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":1916,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1915,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":178,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1648,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2151,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1293,"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":39,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1631,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":644,"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":664,"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":2263,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1145,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1399,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1363,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2525,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1685,"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":632,"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":1299,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1109,"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":2262,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1757,"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":1770,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1735,"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":2687,"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":2647,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2296,"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":219,"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":2625,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2620,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2033,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1369,"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":1364,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2755,"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":29,"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":2347,"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":2396,"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":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2538,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2394,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":946,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":945,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2348,"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":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2539,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2395,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2544,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1984,"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":2399,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1985,"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":2541,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1983,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1185,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2543,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1601,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1267,"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":1426,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1376,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":493,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":489,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":27,"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":473,"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":441,"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":451,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1256,"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":584,"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":683,"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":691,"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":948,"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":2089,"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":285,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":212,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":471,"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":803,"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":1374,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1266,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2417,"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":2817,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":538,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"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":1629,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1168,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":601,"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":104,"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":860,"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":262,"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":1052,"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":2040,"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":1609,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1128,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":299,"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":2428,"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":2427,"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":633,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":949,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2219,"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":1548,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1557,"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":979,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2592,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1774,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":427,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":414,"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":922,"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":1531,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1529,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":743,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1254,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":541,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":769,"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":1516,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2945,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1514,"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":1665,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1909,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1799,"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":1506,"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":412,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":684,"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":692,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1123,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":893,"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":985,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":996,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2641,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":2007,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":420,"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":2168,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1872,"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":1072,"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":2702,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2676,"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":1093,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":597,"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":1250,"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":1253,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1035,"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":1265,"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":1187,"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":82,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2350,"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":1836,"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":1022,"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":2553,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1233,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":811,"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":{},"deprecated":{}}],["level",{"_index":2479,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2879,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":832,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":816,"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":1923,"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":1173,"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":2903,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2902,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":403,"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":1450,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":7,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/tools-reference/tools/divide-files-with-split/":{},"/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":693,"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":1457,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":119,"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":1856,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2176,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2785,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2784,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1858,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1140,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1672,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1677,"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":2905,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1753,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":955,"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":1673,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2146,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2175,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1696,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2919,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2881,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2904,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1959,"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":662,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":113,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":4,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2851,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2768,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2431,"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":2439,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2882,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":940,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2899,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1731,"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":1992,"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":1794,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1800,"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":1999,"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":1596,"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":2946,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1728,"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":1730,"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":2917,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2767,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1322,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2231,"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":1906,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":700,"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":2330,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":926,"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":835,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":530,"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":2036,"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":2080,"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":2873,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1839,"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":1932,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2467,"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":329,"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":508,"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":1634,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":278,"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/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":1874,"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":532,"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":2526,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":698,"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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":2474,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":394,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":957,"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":2473,"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":2476,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":578,"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":1483,"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":2913,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":931,"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":1968,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1894,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2642,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2019,"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":2085,"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":1694,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1194,"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":2109,"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":731,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2274,"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":251,"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":1264,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":170,"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":2797,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2795,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2796,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2627,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":596,"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":602,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":211,"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":173,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1061,"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":1063,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1065,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":777,"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":1867,"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":1381,"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":1384,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1598,"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":2079,"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":323,"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":1961,"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":107,"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":629,"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":504,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1860,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":120,"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/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":2178,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2127,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2629,"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":2123,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":892,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1789,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2287,"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":762,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2421,"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":2289,"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":2709,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2292,"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":2293,"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":447,"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":252,"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":594,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":20,"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":1480,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1786,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":476,"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":2121,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":234,"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":1691,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1200,"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":350,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":483,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2286,"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":2453,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1613,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":565,"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":1627,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1650,"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":2303,"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":2717,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":916,"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":2837,"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":101,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1087,"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":422,"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":2654,"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":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1226,"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":676,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1281,"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":396,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1229,"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":184,"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":2666,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1967,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":188,"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":1821,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":746,"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":747,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1534,"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":2147,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2145,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1179,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1291,"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":1456,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":153,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":866,"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":1624,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":515,"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":1444,"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":100,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1492,"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":2514,"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":2584,"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":1896,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1318,"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":2704,"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":2777,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2763,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2195,"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":1785,"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":1431,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2510,"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":2727,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1259,"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":2583,"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":2392,"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":2208,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1621,"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":606,"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":257,"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":598,"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":2196,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1432,"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":415,"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":2207,"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":273,"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":2466,"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":1808,"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":719,"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":1053,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1355,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":227,"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":2011,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":831,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1309,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2511,"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":1822,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1361,"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":1980,"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":654,"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":2935,"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":2936,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":595,"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":2138,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1377,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1404,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1873,"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":2937,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2351,"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":2639,"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":1490,"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":1653,"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":214,"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":1252,"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":822,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1375,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":2010,"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":555,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":377,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1332,"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":2190,"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":1333,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1655,"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":1736,"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":2693,"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":21,"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":2326,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2891,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2382,"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":2381,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2383,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1855,"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":2892,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2570,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2402,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1853,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2893,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1190,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2894,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2818,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2895,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2097,"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":1854,"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":2384,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1877,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2448,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1475,"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":2751,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":854,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2099,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2750,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2096,"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":2630,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2568,"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":853,"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":1692,"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":1312,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":24,"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":1479,"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":1201,"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":1204,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2420,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":695,"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":2084,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":964,"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":2192,"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":2252,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":208,"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":1963,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1863,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1964,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":99,"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":2264,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":616,"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":2512,"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":2527,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":672,"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":2850,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1831,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1702,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":895,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":603,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":126,"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":2914,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":61,"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":266,"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":1830,"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":47,"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/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/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/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":2376,"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":2375,"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":2758,"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":873,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2355,"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":2260,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2354,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1537,"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":2403,"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":2695,"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":2572,"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":2386,"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":2025,"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":2353,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2267,"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":2266,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1538,"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":1717,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2269,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2613,"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":2371,"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":2261,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2024,"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":1536,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2268,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1451,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1347,"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":2689,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":607,"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":923,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":919,"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":233,"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":221,"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/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/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/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1169,"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":{}}],["non",{"_index":372,"title":{},"keywords":{},"toc":{"/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":1336,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":904,"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":2555,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1638,"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":472,"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":1049,"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":371,"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":370,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":738,"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":2928,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2082,"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":894,"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":899,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":77,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":{}}],["numer",{"_index":80,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["nvim",{"_index":621,"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":1103,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":185,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1149,"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":1408,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":449,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2554,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":1016,"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":1021,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":1018,"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":{}}],["offens",{"_index":1239,"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":1697,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offsit",{"_index":2884,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1758,"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":1549,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1520,"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":1220,"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":241,"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":2218,"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":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":327,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":216,"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":1392,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2071,"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":1075,"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":2094,"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":1385,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":268,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":975,"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":744,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1273,"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":1020,"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":1986,"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":2517,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2327,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2328,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2329,"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":2518,"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":2611,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2848,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":292,"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":997,"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":1298,"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":2792,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1688,"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":1050,"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":741,"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":2320,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2319,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":648,"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":1111,"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":1552,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":361,"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":16,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":950,"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":2315,"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":2339,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2309,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2341,"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":2340,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2731,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1268,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2312,"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":2733,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2732,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2311,"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":2602,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2310,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2601,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2308,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2334,"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":972,"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":1646,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":363,"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":1294,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2462,"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":2591,"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":572,"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":2713,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":798,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1406,"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":2358,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1848,"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":465,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":959,"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":1824,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":898,"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":1288,"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":2210,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":855,"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":1026,"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":95,"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":706,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2950,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":647,"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":2120,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2921,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1348,"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":580,"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":379,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":754,"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":1981,"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":75,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2128,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2125,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1762,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1676,"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":255,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":2414,"title":{},"keywords":{},"toc":{"/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":721,"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":2240,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":709,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":963,"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":2216,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":116,"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":88,"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":667,"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":1048,"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":1394,"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":1929,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2302,"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":671,"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":2067,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":535,"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":1837,"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":2374,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":416,"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":1559,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":205,"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":1847,"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":239,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":349,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":352,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2626,"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":2650,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2741,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":117,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["phonet",{"_index":145,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["php",{"_index":270,"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":1191,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2412,"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":1869,"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":2577,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2678,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1875,"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":1260,"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":1870,"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":2616,"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":2410,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2617,"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":2411,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1090,"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":1586,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1257,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":2003,"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":2380,"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":1849,"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":2258,"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":18,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":53,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":703,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":442,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2070,"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":2706,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2772,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2389,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2407,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2072,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1925,"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":123,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2288,"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":1820,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2052,"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":827,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1463,"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":2221,"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":968,"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":971,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":969,"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":974,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2729,"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":618,"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":137,"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":1588,"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":1344,"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":1275,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1357,"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":1722,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":517,"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":1944,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1305,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1889,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":362,"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":1416,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":277,"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":2073,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":550,"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":1844,"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":1066,"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":2245,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1594,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2242,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2698,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2697,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2859,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_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 on ubuntu",{"_index":2814,"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":2599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2463,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2845,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2696,"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":2813,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_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":{}}],["postfix with mysql",{"_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":{}}],["postgr",{"_index":237,"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":2637,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2445,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":46,"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":1170,"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":2344,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2857,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2571,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_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":{}}],["postgresql on cento",{"_index":2856,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2870,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2858,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2345,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2819,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2636,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2444,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2820,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2821,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2651,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":346,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2749,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":108,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1823,"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":196,"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":576,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2703,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1811,"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":2005,"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":928,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1304,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefix",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["prefork",{"_index":1491,"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":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1047,"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":142,"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":2153,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":718,"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":2735,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":788,"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":791,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1864,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":988,"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":1647,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1486,"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":2435,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1493,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":539,"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":1393,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1303,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1972,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1573,"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":2461,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":315,"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":148,"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":194,"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":533,"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":1566,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":391,"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":2559,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2256,"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":844,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2876,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2648,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":586,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2105,"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":2831,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2106,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2833,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2803,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2335,"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":2107,"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":2110,"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":1561,"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":2235,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":495,"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":281,"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":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-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/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/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":2055,"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":2008,"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":240,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":787,"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":1503,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1105,"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":2659,"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":464,"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":757,"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":1329,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":759,"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":1328,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":217,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1094,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":774,"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":593,"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":2076,"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":2846,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1582,"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":1583,"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":1584,"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":365,"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":704,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":708,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":55,"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/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":154,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":846,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2594,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1080,"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":2589,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2593,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":405,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":696,"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":1591,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2185,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":66,"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":68,"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":407,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2324,"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":516,"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":1206,"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":1921,"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":1523,"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":2886,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1920,"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":2317,"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":2459,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":413,"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":2241,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2862,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":52,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":42,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2442,"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":1249,"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":2314,"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":1960,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2849,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1499,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":303,"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":1029,"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":883,"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":1767,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1759,"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":2108,"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":2031,"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":2866,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":125,"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":2141,"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":2136,"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":2169,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":388,"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":301,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1460,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":498,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/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":{}}],["recordkeep",{"_index":768,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["recov",{"_index":2142,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":944,"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":2278,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["red",{"_index":160,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["red hat",{"_index":158,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"toc":{},"deprecated":{}}],["redi",{"_index":191,"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":645,"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":2519,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1199,"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":838,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2532,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2520,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2408,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2533,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2522,"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":2438,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2039,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1197,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2529,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2038,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1196,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1198,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2521,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":720,"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":2778,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2259,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2255,"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":2257,"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":2635,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2254,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2779,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":1010,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":513,"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":1979,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1528,"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":1827,"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":880,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1371,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2556,"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":2547,"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":1008,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2471,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1074,"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":1076,"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":1071,"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":1195,"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":2736,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1926,"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":228,"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":1144,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":432,"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":401,"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":938,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1236,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":656,"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":1086,"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":1084,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1085,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1807,"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":1547,"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":326,"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":295,"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":395,"title":{},"keywords":{},"toc":{"/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":272,"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":577,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":109,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1136,"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":2223,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":961,"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":2645,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":917,"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":2092,"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":2095,"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":763,"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":1608,"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":1445,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2806,"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":545,"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":25,"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":2181,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":643,"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":1930,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":833,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1367,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":313,"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":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-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/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":1500,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":1210,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":1009,"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":924,"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":1419,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1895,"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":2119,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1081,"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":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":962,"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":2880,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2101,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":864,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":826,"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":1284,"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":1286,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2478,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":324,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2947,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1028,"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":64,"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":1955,"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":474,"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":1522,"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":1207,"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":1209,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":339,"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":1418,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":392,"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":1941,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":947,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1832,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":525,"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":1422,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1423,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1507,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1505,"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":527,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":863,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":526,"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":587,"title":{},"keywords":{},"toc":{"/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":2102,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2357,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2244,"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":1488,"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":2960,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1439,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":501,"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":613,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":585,"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":2179,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1306,"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":1642,"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":2869,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":304,"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":311,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":381,"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":200,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":752,"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":56,"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":479,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":951,"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":139,"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":141,"title":{},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"toc":{},"deprecated":{}}],["seasid",{"_index":2740,"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":2500,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":332,"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":2432,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1482,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1478,"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":869,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":999,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":868,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2545,"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":1004,"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":805,"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":2780,"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":2781,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1942,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":867,"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":59,"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":2249,"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":1998,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1790,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1485,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":649,"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":1089,"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":65,"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/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":761,"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":1938,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1632,"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":290,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1230,"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":1628,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":58,"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":1976,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":380,"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":1397,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":45,"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/tools-reference/tools/divide-files-with-split/":{},"/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":1695,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":669,"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":711,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":953,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1729,"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":2752,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":354,"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":355,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":359,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":841,"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":265,"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":1902,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1590,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":393,"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":1740,"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":2711,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2129,"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":1351,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1297,"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":1633,"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":806,"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":398,"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":518,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":514,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":202,"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":2322,"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":2915,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":245,"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":1396,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1398,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":552,"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":1708,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2086,"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":78,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2684,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2959,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1704,"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":428,"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":1884,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2739,"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":1126,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2694,"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":1068,"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":2000,"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":523,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1164,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2062,"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":2582,"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":2929,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2506,"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":2560,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2117,"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":1833,"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":177,"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":1834,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":353,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":799,"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":729,"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":2771,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2789,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2422,"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":307,"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":357,"title":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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":2657,"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":1228,"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":1945,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1814,"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":615,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":557,"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":2387,"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":2747,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":765,"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":1977,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":102,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":330,"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":914,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2217,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1271,"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":385,"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":1453,"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":1575,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2063,"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":{}}],["split",{"_index":71,"title":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["spreadsheet",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":243,"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":2313,"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":238,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2742,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2211,"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":2373,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1818,"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":1866,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1865,"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":2930,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":665,"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":2825,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1127,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2074,"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":1124,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2824,"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":2826,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2827,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":697,"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":1152,"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":2783,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1151,"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":2434,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2782,"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":1710,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1714,"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":1711,"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":1715,"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":2400,"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":1721,"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":1024,"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":288,"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":291,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":547,"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":457,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1734,"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":1160,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["star",{"_index":9,"title":{},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["stare",{"_index":2875,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":110,"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":1623,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1353,"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":1092,"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":1577,"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":2680,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1504,"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":2670,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1436,"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":1703,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":67,"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":115,"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":134,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":823,"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":1269,"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":1246,"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":820,"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":1270,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":62,"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":2236,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":592,"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":206,"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":264,"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":1114,"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":943,"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":1113,"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":2133,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2132,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":739,"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":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1238,"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":2549,"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":1006,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":356,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":1000,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":452,"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":2049,"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":500,"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":2793,"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":1129,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":569,"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":1654,"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":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2761,"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":989,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2301,"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":{}}],["suffix",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{}},"deprecated":{}}],["suit",{"_index":2238,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":936,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":132,"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":482,"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":2938,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1056,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2762,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":263,"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":1146,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":679,"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":681,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":682,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":728,"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":1796,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2468,"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":1527,"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":2663,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2665,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":197,"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":1449,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":351,"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":1966,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2356,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":724,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":57,"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":2769,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":657,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1891,"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":1077,"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":1614,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":383,"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":2551,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":540,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1317,"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":995,"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":122,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":8,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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":2721,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["tarbal",{"_index":14,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{}},"deprecated":{}}],["target",{"_index":612,"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":246,"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":1192,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":884,"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":886,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":887,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1433,"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":2078,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1563,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1602,"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":1605,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1604,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1495,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":434,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2170,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2649,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2164,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":650,"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":1978,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1782,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":376,"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":2918,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":494,"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":1290,"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":90,"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/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":1684,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":619,"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 fil",{"_index":2446,"title":{},"keywords":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{},"deprecated":{}}],["text user-interfac",{"_index":749,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":236,"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":2623,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":879,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1218,"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":978,"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":41,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1675,"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":1612,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":675,"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":336,"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":1883,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2171,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1937,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":242,"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":1011,"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":2498,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2065,"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":670,"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":1030,"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":309,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":755,"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":333,"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":1699,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":783,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":792,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":375,"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":1091,"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":1157,"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":2916,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1182,"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":1184,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2901,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":930,"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":558,"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":1119,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":742,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1102,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2640,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":368,"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":2291,"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":335,"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":2134,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1043,"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":1162,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":756,"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":460,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":800,"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":850,"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":2734,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2020,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1316,"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":1489,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1032,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1840,"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":1031,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":750,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":347,"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":1607,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1107,"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":1585,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1448,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":828,"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":2047,"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":226,"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":1101,"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":1952,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2931,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1248,"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":28,"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":2508,"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":2598,"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":2401,"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":2452,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2465,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2449,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2596,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2193,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2271,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2224,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2228,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1780,"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":2112,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":2016,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1211,"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":1664,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2022,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1868,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":903,"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":934,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2860,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2944,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2900,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2801,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2497,"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":2816,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2802,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2093,"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":2250,"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":1324,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2854,"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":2701,"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":2638,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2044,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1663,"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":2111,"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":1922,"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":2507,"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":2699,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2372,"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":2450,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2194,"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":2272,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2229,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1913,"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":2045,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2113,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1389,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1321,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2634,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1666,"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":2046,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2209,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2282,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1689,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":637,"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":1323,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1461,"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":2091,"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":2368,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2369,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1219,"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":1320,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2409,"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":345,"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":983,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1205,"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":1208,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1975,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2423,"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":2664,"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":673,"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":438,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2066,"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":72,"title":{},"keywords":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2077,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2872,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1345,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":882,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":581,"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":2155,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1842,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":462,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":790,"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":32,"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":130,"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":1044,"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":1950,"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":710,"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":1615,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":400,"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":5,"title":{"/docs/quick-answers/linux/compress-files-using-the-command-line/":{},"/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/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/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/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/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":74,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/tools-reference/tools/divide-files-with-split/":{},"/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":2587,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2586,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":149,"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":2104,"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":2167,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1069,"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":1958,"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/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"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":1314,"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":1525,"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":1526,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":843,"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":1403,"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":89,"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":1088,"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":1846,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1641,"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":1838,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2053,"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":1928,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":907,"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":169,"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":1222,"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":1176,"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":991,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":171,"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":38,"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":617,"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":807,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":390,"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":1996,"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":1496,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1530,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2458,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2887,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":705,"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":1783,"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":1946,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":300,"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":2304,"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":2457,"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":435,"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":1784,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1335,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1334,"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":1400,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":284,"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":512,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":469,"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":1494,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1292,"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":258,"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":103,"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":502,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":1014,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":369,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2114,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":981,"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":571,"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":193,"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/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":1871,"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":1700,"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":2042,"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":1175,"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":1387,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":386,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":732,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":713,"title":{},"keywords":{"/docs/web-servers/caddy/compile-caddy-from-source/":{},"/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":1881,"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":2838,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":688,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1319,"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":2305,"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":1340,"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":1285,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":780,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1732,"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":314,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2807,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":640,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":305,"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":1903,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":176,"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":1756,"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":2504,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":484,"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":488,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":911,"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":1533,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":112,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1572,"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":1951,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1117,"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":2524,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":253,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2048,"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":1571,"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":1263,"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":174,"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":2829,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2830,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2847,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2828,"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":468,"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":824,"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":260,"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":785,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1025,"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":551,"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":2530,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":554,"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":446,"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":852,"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":409,"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":1918,"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":1670,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1118,"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":223,"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":1214,"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":1217,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1587,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1346,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1562,"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":320,"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":812,"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":639,"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":1805,"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":1804,"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":1802,"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":2316,"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":1532,"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":1172,"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":1174,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":437,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2032,"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":1989,"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":2035,"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":1100,"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":2724,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":560,"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":2953,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1755,"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":1659,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2874,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":794,"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":294,"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":521,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2115,"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":510,"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":2557,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1379,"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":2652,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2360,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1382,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1383,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2363,"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":2653,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2609,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2364,"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":2855,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2362,"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":2610,"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":1386,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2361,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2718,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":611,"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":1768,"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":1771,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1414,"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":2083,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1115,"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":1971,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2730,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}}