aboutsummaryrefslogtreecommitdiffstats
path: root/nginx.conf
blob: 02e8dabbe7b265b1a06993234d484df28ea235fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       80;
    server_name  localhost;

    location ~ ^/ {
        root   /usr/share/nginx/html;
        try_files $uri $uri/index.html;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}