aboutsummaryrefslogtreecommitdiffstats
path: root/nginx/nginx.conf
blob: 822dd295920b1578dffb19c3378ddf0f65b013d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
    listen       80;
    listen  [::]:80;
    server_name _;

    root /usr/share/nginx/html;
    index index.html index.htm;

    location / {
        try_files $uri $uri/ /index.html;
    }

    error_page 404 /404.html;
    location = /404.html {
        internal;
    }
}