summaryrefslogtreecommitdiffstats
path: root/nginx/nginx.conf
diff options
context:
space:
mode:
authorStone, Avi (as206k) <as206k@att.com>2018-04-12 16:41:45 +0300
committerStone, Avi (as206k) <as206k@att.com>2018-04-12 16:41:45 +0300
commit879e94b78193798e8b170fca9b924d2c3881f7ba (patch)
tree150de697138a7593869eaae455add025b06a6e04 /nginx/nginx.conf
parent7e02c7aaab14828ef8baaef98865f26d98e3b795 (diff)
DCAE-D tosca-lab initial commit
DCAE-D tosca-lab initial commit Change-Id: Ia42934ce7c75abe05fa106585c9334c8b048ee36 Issue-ID: SDC-1218 Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r--nginx/nginx.conf30
1 files changed, 30 insertions, 0 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
new file mode 100644
index 0000000..363e205
--- /dev/null
+++ b/nginx/nginx.conf
@@ -0,0 +1,30 @@
+#user nginx;
+worker_processes 1;
+
+error_log logs/error.log;
+error_log logs/error.log notice;
+error_log logs/error.log info;
+
+pid nginx.pid;
+
+
+events {
+ worker_connections 4096;
+}
+
+
+http {
+
+ server {
+ listen 8085;
+ server_name localhost;
+ charset utf-8r;
+
+ location / {
+ include uwsgi_params;
+ uwsgi_pass unix:/run/uwsgi/tosca.sock;
+
+ }
+ }
+
+}