File size: 225 Bytes
f78d689
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
    listen 80;
    listen [::]:80;
    server_name localhost;
    error_log off;

    location / {
        root /usr/share/nginx/html;
        index index.html index.htm;
    }

    error_page 404 =200 /index.html;
}