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
This commit is contained in:
ZhiQiang Fan 2016-03-22 23:25:41 +08:00
parent 9d71ae4f4f
commit 66714f6d00

View File

@ -20,7 +20,7 @@ Create aodh-uwsgi.ini file::
[uwsgi]
http = 0.0.0.0:8041
wsgi-file = <path_to_aodh>/aodh/rest/app.wsgi
wsgi-file = <path_to_aodh>/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 doesnt 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.