diff options
Diffstat (limited to 'conductor/examples/nginx/nginx.conf')
-rw-r--r-- | conductor/examples/nginx/nginx.conf | 15 |
1 files changed, 15 insertions, 0 deletions
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; + } + } +} |