diff options
Diffstat (limited to 'compose/config')
-rw-r--r-- | compose/config/nginx/nginx.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/compose/config/nginx/nginx.conf b/compose/config/nginx/nginx.conf new file mode 100644 index 00000000..08d65627 --- /dev/null +++ b/compose/config/nginx/nginx.conf @@ -0,0 +1,18 @@ +user nginx; + +events { + worker_connections 1000; +} + +http { + upstream pdps { + server apexpdp:6969; + server apexpdp:23324; + } + server { + listen 30001; + location / { + proxy_pass http://pdps; + } + } +} |