server {
    listen 80;
    server_name _;

    location /brief/ {
        root /usr/share/nginx/html;
        try_files $uri $uri.html =404;
        add_header Cache-Control "no-cache" always;
    }
}
