aboutsummaryrefslogtreecommitdiff
path: root/nginx.example.conf
blob: d2899f437081ee081fbc67424d1d9b8299022873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
http{
  server {
    server_name dyn.localhost;
    index index.html;
    location = /favicon.ico {
      root /srv/www;
    }
    location ~ ^/(|index.html)$ {
      root /root/minimun/www;
    }
    location / {
      include uwsgi_params;
      uwsgi_modifier1 9;
      uwsgi_pass 127.0.0.1:8080;
    }
  }
}