aboutsummaryrefslogtreecommitdiffstats
path: root/templates/homepage/usr_local_etc_nginx_nginx.conf.j2
blob: 53d1c3101759a7c0de2c5b8f4bc18fd3674f7d75 (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
worker_processes auto;

events {
    worker_connections  1024;
}

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

    sendfile        on;
    keepalive_timeout  65;

    server {
        listen 80 default_server;
        server_name _;

        root /var/www;

        index index.html;

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