summaryrefslogtreecommitdiffstats
path: root/conductor/examples/nginx/nginx.conf
diff options
context:
space:
mode:
authorShankaranarayanan Puzhavakath Narayanan <snarayanan@research.att.com>2017-12-17 15:39:38 +0000
committerGerrit Code Review <gerrit@onap.org>2017-12-17 15:39:38 +0000
commiteef6fd68695c7b89548a622412067b8641e0dc77 (patch)
tree101e86853e84d6a8c13a606e54a36f830789364e /conductor/examples/nginx/nginx.conf
parentb40db10c6adc205d6dc2a4512d37445089cf4e47 (diff)
parent710d958a29198b6633236c1b7cad12babfe46833 (diff)
Merge "Added all common modules in conductor directory"
Diffstat (limited to 'conductor/examples/nginx/nginx.conf')
-rw-r--r--conductor/examples/nginx/nginx.conf15
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;
+ }
+ }
+}