aboutsummaryrefslogtreecommitdiffstats
path: root/roles/jails/12_goaccess/templates/usr_local_etc_nginx_nginx.conf
blob: fa6c32930df9c5557b674108074432c2d0e76a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
worker_processes 1;

events {
    worker_connections 128;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile      on;

    server {
        listen 80;
        server_name _;

        root /var/db/goaccess/html;
        index index.html;

        location / {
            try_files $uri $uri/ =404;
        }
    }
}