From 66714f6d00388de6ada6961c191db28a0449c75d Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Tue, 22 Mar 2016 23:25:41 +0800 Subject: [PATCH] remove non ascii character in doc There is a character in uwsgi doc which represents similar to ', this patch replaces it with the ascii one. Change-Id: If0caeabb46d37e87dee539fe30f0cd26dc3b73fe --- doc/source/install/uwsgi.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/install/uwsgi.rst b/doc/source/install/uwsgi.rst index fe6a07538..06133fc42 100644 --- a/doc/source/install/uwsgi.rst +++ b/doc/source/install/uwsgi.rst @@ -20,7 +20,7 @@ Create aodh-uwsgi.ini file:: [uwsgi] http = 0.0.0.0:8041 - wsgi-file = /aodh/rest/app.wsgi + wsgi-file = /aodh/api/app.wsgi plugins = python # This is running standalone master = true @@ -34,7 +34,7 @@ Create aodh-uwsgi.ini file:: enable-threads = true # Set the number of threads usually with the returns of command nproc threads = 8 - # Make sure the client doesn’t try to re-use the connection. + # Make sure the client doesn't try to re-use the connection. add-header = Connection: close # Set uid and gip to a appropriate user on your server. In many # installations ``aodh`` will be correct.