summaryrefslogtreecommitdiffstats
path: root/nginx/nginx.conf
blob: 363e20557f23d6b57d3ab8a6f2aaea98aea2ade1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#user nginx;
worker_processes  1;

error_log  logs/error.log;
error_log  logs/error.log  notice;
error_log  logs/error.log  info;

pid        nginx.pid;


events {
    worker_connections  4096;
}


http {

    server {
        listen   8085;
        server_name  localhost;
        charset utf-8r;

        location / {
            include  uwsgi_params;
            uwsgi_pass unix:/run/uwsgi/tosca.sock;
            
        }
    }

}