server {
? ? ? ? ? ? ? ? listen? ? ? 80;
? ? ? ? ? ? ? ? server_name? localhost;
? ? ? ? ? ? ? ? index? index.html index.htm;
? ? ? ? ? ? ? ? root /xxx/xxx;
? ? ? ? ? ? ? ? location / {
? ? ? ? ? ? ? ? ? ? ? ? try_files $uri $uri/ /index.html =404;
? ? ? ? ? ? ? ? }
}