From 710d958a29198b6633236c1b7cad12babfe46833 Mon Sep 17 00:00:00 2001 From: rl001m Date: Sun, 17 Dec 2017 09:04:31 -0500 Subject: Added all common modules in conductor directory Added the common modules used by all the other components of Homing Optimizer. Change-Id: I6e8a991b54ef422da66b3174f27f6998731ec188 Issue-ID: OPTFRA-11 Signed-off-by: rl001m --- conductor/examples/nginx/nginx.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 conductor/examples/nginx/nginx.conf (limited to 'conductor/examples/nginx/nginx.conf') diff --git a/conductor/examples/nginx/nginx.conf b/conductor/examples/nginx/nginx.conf new file mode 100644 index 0000000..90f78c9 --- /dev/null +++ b/conductor/examples/nginx/nginx.conf @@ -0,0 +1,15 @@ +# This is an example nginx configuration file for using the +# conductor API through uWSGI. Include the "server" section +# within the broader "http" configuration. + +http { + server { + listen 8091; + server_name CONDUCTOR_API_FQDN; + + location / { + include uwsgi_params; + uwsgi_pass unix:/tmp/uwsgi.sock; + } + } +} -- cgit 1.2.3-korg