Remove unused and outdated ops docs

hotfix-virtualenv-no-downlaod
Eric Holscher 2016-11-30 14:31:29 -08:00
parent 2159c146b5
commit 105c56658e
2 changed files with 0 additions and 38 deletions

View File

@ -122,11 +122,3 @@ Information about development is also available:
design
theme
.. _ops-docs:
.. toctree::
:maxdepth: 2
:caption: Operations Documentation
rtfd

View File

@ -1,30 +0,0 @@
Configuration of the production servers
=======================================
This document is to help people who are involved in the production instance of Read the Docs running on readthedocs.org. It contains implementation details and useful hints for the people handling operations of the servers.
Elastic Search Setup
--------------------
You need to install the ICU plugin to make ES work::
# Use the correct path to the plugin executable that ships with ES.
/usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.3.0
::
from search.indexes import Index, PageIndex, ProjectIndex, SectionIndex
# Create the index.
index = Index()
index_name = index.timestamped_index()
index.create_index(index_name)
index.update_aliases(index_name)
# Update mapping
proj = ProjectIndex()
proj.put_mapping()
page = PageIndex()
page.put_mapping()
sec = SectionIndex()
sec.put_mapping()