nginx.conf 285 B

1234567891011121314151617
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. # 网站根目录
  5. root /usr/share/nginx/html;
  6. # 默认首页文件
  7. index index.htm index.html;
  8. # 设置文件输出编码为 UTF-8
  9. charset utf-8;
  10. location / {
  11. try_files $uri $uri/ =404;
  12. }
  13. }