diff --git a/ncac/package/cac.conf b/ncac/package/cac.conf new file mode 100644 index 0000000..70a9de0 --- /dev/null +++ b/ncac/package/cac.conf @@ -0,0 +1,13 @@ +server { + listen 88; + server_name cacserver; + + location / { + root static; + index index.html index.htm; + } + + location /cac-api { + proxy_pass http://127.0.0.1:8099/; + } +}