aboutsummaryrefslogtreecommitdiffstats
path: root/compose/config/nginx/nginx.conf
blob: 08d6562770c2655c12dc46cfd23836239acfa211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
user nginx;

events {
    worker_connections 1000;
}

http {
    upstream pdps {
        server apexpdp:6969;
        server apexpdp:23324;
    }
    server {
        listen 30001;
        location / {
            proxy_pass http://pdps;
        }
    }
}