runtimeapi & genprocessor pom.xml docker changes
[dcaegen2/platform.git] / mod / genprocessor / nginx.conf
1 server {
2     listen       80;
3     server_name  localhost;
4
5     location / {
6         root   /usr/share/nginx/html;
7         index  index.html index.htm;
8     }
9
10     # redirect server error pages to the static page /50x.html
11     #
12     error_page   500 502 503 504  /50x.html;
13     location = /50x.html {
14         root   /usr/share/nginx/html;
15     }
16
17     location /nifi-jars {
18         root /www/data;
19         autoindex on;
20         autoindex_format json;
21     }
22 }