server { listen 80; server_name localhost; # 网站根目录 root /usr/share/nginx/html; # 默认首页文件 index index.htm index.html; # 设置文件输出编码为 UTF-8 charset utf-8; location / { try_files $uri $uri/ =404; } }