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

events {
    worker_connections 1000;
}

http {
    upstream runtime {
        server policy-clamp-runtime-acm-replica:6969;
    }
    server {
        listen 30007;
        location / {
            proxy_pass http://runtime;
        }
    }
}