Allow the configuration of meta and data directories
diff --git a/README.rst b/README.rst
index 48a494f..23b12f0 100644
--- a/README.rst
+++ b/README.rst
@@ -40,6 +40,20 @@
key_file: /etc/influxdb/ssl/key.pem
cert_file: /etc/influxdb/ssl/cert.pem
+Single-node influxdb where you specify paths for data and metastore directories. You
+need to ensure that directories exist:
+
+.. code-block:: yaml
+
+ influxdb:
+ server:
+ enabled: true
+ data:
+ dir: '/opt/influxdb/data'
+ wal_dir: '/opt/influxdb/wal'
+ meta:
+ dir: '/opt/influxdb/meta'
+
Single-node influxdb with an admin user:
.. code-block:: yaml