summaryrefslogtreecommitdiffstats
path: root/clover/controller/process/nginx.conf
blob: 5b2692234ab9e062c9fc95e3a16d6159175930a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
worker_processes auto;
pid /run/nginx.pid;

events {
   worker_connections 768;
}


http {
    server {
        listen 80;

        location / {
            include proxy_params;
            proxy_pass http://localhost:8000;
        }
    }
}