summaryrefslogtreecommitdiffstats
path: root/dcaedftool/nginx.conf
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2018-08-02 04:20:54 +0000
committerGerrit Code Review <gerrit@onap.org>2018-08-02 04:20:54 +0000
commitc4a139fff38bc62ea0a47566707c7aad13a86b4f (patch)
tree1280ca44d00e33a98975c67b756fffdefe405b28 /dcaedftool/nginx.conf
parent57d083ac5f18de84351754685b739417039f83ec (diff)
parentd2a9bf7db4e21e5e87ea98efd2d63ef225830d75 (diff)
Merge "Add code for data format webtool"
Diffstat (limited to 'dcaedftool/nginx.conf')
-rw-r--r--dcaedftool/nginx.conf23
1 files changed, 23 insertions, 0 deletions
diff --git a/dcaedftool/nginx.conf b/dcaedftool/nginx.conf
new file mode 100644
index 0000000..8bc6c62
--- /dev/null
+++ b/dcaedftool/nginx.conf
@@ -0,0 +1,23 @@
+worker_processes 1;
+
+events {
+ worker_connections 1024;
+}
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ sendfile on;
+
+ keepalive_timeout 65;
+
+ server {
+ listen 80;
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ location / {
+ try_files $uri $uri/ /index.html =404;
+ }
+ }
+}