summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-12-12 15:16:14 +0000
committerGerrit Code Review <review@openstack.org>2022-12-12 15:16:14 +0000
commite40ac0c798164d9d6c46088e783a5b117f7a3a90 (patch)
tree4b4b3f4bcd78252405eaa3c63ef94664a98b3361 /doc
parentbee679751bea7f66d344717263011eb421c92421 (diff)
parent73fe84fa0ea6f7c7fa55544f6bce5326d87743a6 (diff)
downloadnova-e40ac0c798164d9d6c46088e783a5b117f7a3a90.tar.gz
Merge "Support multiple config file with mod_wsgi"
Diffstat (limited to 'doc')
-rw-r--r--doc/source/user/wsgi.rst14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/source/user/wsgi.rst b/doc/source/user/wsgi.rst
index 6b314b4832..63f949df1a 100644
--- a/doc/source/user/wsgi.rst
+++ b/doc/source/user/wsgi.rst
@@ -8,10 +8,16 @@ as Apache_ or nginx_).
The nova project provides two automatically generated entry points that
support this: ``nova-api-wsgi`` and ``nova-metadata-wsgi``. These read
-``nova.conf`` and ``api-paste.ini`` and generate the required module-level
-``application`` that most WSGI servers require. If nova is installed using pip,
-these two scripts will be installed into whatever the expected ``bin``
-directory is for the environment.
+``nova.conf`` and ``api-paste.ini`` by default and generate the required
+module-level ``application`` that most WSGI servers require.
+If nova is installed using pip, these two scripts will be installed into
+whatever the expected ``bin`` directory is for the environment.
+
+The config files and config directory can be overridden via the
+``OS_NOVA_CONFIG_FILES`` and ``OS_NOVA_CONFIG_DIR`` environment variables.
+File paths listed in ``OS_NOVA_CONFIG_FILES`` are relative to
+``OS_NOVA_CONFIG_DIR`` and delimited by ``;``.
+
The new scripts replace older experimental scripts that could be found in the
``nova/wsgi`` directory of the code repository. The new scripts are *not*