server {
    listen 80;
    listen [::]:80;

    server_name note.jswdwsx.com;
    charset utf-8;
    root /var/www/note;
    index index.html;

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